superlint/.github/workflows/draft-release.yml
Lukas Gravley 1a00fc3790
adding fixes (#1516)
* adding fixes

* happy

* happy

* fix local files

* fix spacing

* i hate space

* spacing pt3 the space wars

* further down the bunny trail
2021-05-04 11:33:21 -05:00

29 lines
770 B
YAML

---
###########################################
###########################################
## Draft releases on Push to master/main ##
###########################################
###########################################
name: Release Drafter
###########################
# Start on push to master #
###########################
on:
push:
# branches to consider in the event; optional, defaults to all
branches:
- master
- main
#################
# Start the job #
#################
jobs:
update_release_draft:
runs-on: ubuntu-latest
steps:
# Drafts your next Release notes as Pull Requests are merged into "master"
- uses: release-drafter/release-drafter@v5
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}