mirror of
https://github.com/super-linter/super-linter.git
synced 2024-11-07 17:53:14 -05:00
42ac0c1f0f
* switch to main branch * switch from master to main * switch default branch to main * switch to main branch * switch to main branch * switch to main branch * switch to main branch * switch to main branch * switch to main branch * switch to main branch * switch to main branch * switch to main branch * switch to main branch * make comment reflect code * switch to main branch
28 lines
718 B
YAML
28 lines
718 B
YAML
---
|
|
####################################
|
|
####################################
|
|
## Draft releases on Push to main ##
|
|
####################################
|
|
####################################
|
|
name: Release Drafter
|
|
|
|
###########################
|
|
# Start on push to main #
|
|
###########################
|
|
on:
|
|
push:
|
|
# branches to consider in the event; optional, defaults to all
|
|
branches:
|
|
- 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 }}
|