diff options
| author | Mark Otto <[email protected]> | 2020-05-01 01:22:10 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2020-05-01 11:22:10 +0300 |
| commit | f93e58eddb395ddbb52f2d26aeeae45e0e2d46e5 (patch) | |
| tree | 0d805c234be511ce9a87c471f1cb08793ae05787 /.github/workflows | |
| parent | e344ed44466d0155a96c3149f8b2d1c08f8196af (diff) | |
| download | bootstrap-f93e58eddb395ddbb52f2d26aeeae45e0e2d46e5.tar.xz bootstrap-f93e58eddb395ddbb52f2d26aeeae45e0e2d46e5.zip | |
v4: Add Release Drafter (#30701)
* Create release-drafter.yml
* 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..9f0f4f8c1 --- /dev/null +++ b/.github/workflows/release-notes.yml @@ -0,0 +1,14 @@ +name: Release notes + +on: + push: + branches: + - v4-dev + +jobs: + update_release_draft: + runs-on: ubuntu-latest + steps: + - uses: release-drafter/release-drafter@v5 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
