aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2020-05-01 01:22:10 -0700
committerGitHub <[email protected]>2020-05-01 11:22:10 +0300
commitf93e58eddb395ddbb52f2d26aeeae45e0e2d46e5 (patch)
tree0d805c234be511ce9a87c471f1cb08793ae05787 /.github/workflows
parente344ed44466d0155a96c3149f8b2d1c08f8196af (diff)
downloadbootstrap-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.yml14
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 }}