Skip to content

Commit

Permalink
Merge pull request #151 from jenkinsci/release-drafter-action
Browse files Browse the repository at this point in the history
Switch Release Drafter to GitHub Actions
  • Loading branch information
oleg-nenashev authored Aug 13, 2020
2 parents 06eca54 + 1a50eb0 commit bc8a70d
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/changelog.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# Automates creation of Release Drafts using Release Drafter
# More Info: https://github.com/jenkinsci/.github/blob/master/.github/release-drafter.adoc

on:
push:
branches:
- master

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.11.0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit bc8a70d

Please sign in to comment.