mirror of
https://github.com/super-linter/super-linter.git
synced 2024-11-07 09:45:46 -05:00
29 lines
742 B
YAML
29 lines
742 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
|
|
timeout-minutes: 60
|
|
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 }}
|