diff options
| author | Mark Otto <[email protected]> | 2020-03-25 16:04:37 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2020-03-25 16:04:37 -0700 |
| commit | 0ed53ff15bc6bd6164cf1d7191af6b21ae985b2f (patch) | |
| tree | c896cb75db1e5ffa0993e5ddea3b60da5b7c2801 /.github/workflows | |
| parent | b9bc5beb1de82b3a97f6374fc429cb8f292bd18e (diff) | |
| download | bootstrap-0ed53ff15bc6bd6164cf1d7191af6b21ae985b2f.tar.xz bootstrap-0ed53ff15bc6bd6164cf1d7191af6b21ae985b2f.zip | |
Create release-notes.yml
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/release-notes.yml | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/.github/workflows/release-notes.yml b/.github/workflows/release-notes.yml new file mode 100644 index 000000000..1c9932b5e --- /dev/null +++ b/.github/workflows/release-notes.yml @@ -0,0 +1,14 @@ +name: Release notes + +on: + push: + branches: + - master + +jobs: + update_release_draft: + runs-on: ubuntu-latest + steps: + - uses: release-drafter/release-drafter@v5 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
