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

github.com/CaiJimmy/hugo-theme-stack.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJimmy Cai <jimmehcai@gmail.com>2020-11-07 15:53:11 +0300
committerJimmy Cai <jimmehcai@gmail.com>2020-11-07 15:53:11 +0300
commit5bc567082b4c24cd59370dc7ccae142e01660340 (patch)
tree8f370d22f823a9c7c0a623a7993602d1fb9b2267 /.github
parent148f0ff8fe35ea3667b0401843f3dc6ccf8e0bac (diff)
Add release-drafter
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/release-drafter.yml19
1 files changed, 19 insertions, 0 deletions
diff --git a/.github/workflows/release-drafter.yml b/.github/workflows/release-drafter.yml
new file mode 100644
index 0000000..b1c0cbd
--- /dev/null
+++ b/.github/workflows/release-drafter.yml
@@ -0,0 +1,19 @@
+name: Release Drafter
+
+on:
+ push:
+ # branches to consider in the event; optional, defaults to all
+ 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
+ with:
+ # (Optional) specify config name to use, relative to .github/. Default: release-drafter.yml
+ # config-name: my-config.yml
+ env:
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}