Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Otto <markd.otto@gmail.com>2020-03-26 02:04:37 +0300
committerGitHub <noreply@github.com>2020-03-26 02:04:37 +0300
commit0ed53ff15bc6bd6164cf1d7191af6b21ae985b2f (patch)
treec896cb75db1e5ffa0993e5ddea3b60da5b7c2801 /.github
parentb9bc5beb1de82b3a97f6374fc429cb8f292bd18e (diff)
Create release-notes.yml
Diffstat (limited to '.github')
-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 0000000000..1c9932b5e3
--- /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 }}