mirror of
https://github.com/super-linter/super-linter.git
synced 2024-11-07 17:53:14 -05:00
1a00fc3790
* adding fixes * happy * happy * fix local files * fix spacing * i hate space * spacing pt3 the space wars * further down the bunny trail
29 lines
770 B
YAML
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 }}
|