We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d18fcb2 commit 39a98f8Copy full SHA for 39a98f8
2 files changed
.github/release.yml
@@ -0,0 +1,16 @@
1
+changelog:
2
+ exclude:
3
+ labels:
4
+ - ignore-for-release
5
+ categories:
6
+ - title: Breaking Changes 🛠
7
8
+ - Semver-Major
9
+ - breaking-change
10
+ - title: Exciting New Features 🎉
11
12
+ - Semver-Minor
13
+ - enhancement
14
+ - title: Other Changes
15
16
+ - "*"
.github/workflows/gh-release.yml
@@ -0,0 +1,17 @@
+name: Github Release
+
+on:
+ push:
+ tags:
+ - "v*.*.*"
+jobs:
+ build:
+ runs-on: ubuntu-latest
+ steps:
+ - name: Checkout
+ uses: actions/checkout@v2
+ - name: Release
+ uses: softprops/action-gh-release@v1
+ with:
17
+ generate_release_notes: true
0 commit comments