summaryrefslogtreecommitdiffstats
path: root/.github/workflows/create_release.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/create_release.yml')
-rw-r--r--.github/workflows/create_release.yml33
1 files changed, 33 insertions, 0 deletions
diff --git a/.github/workflows/create_release.yml b/.github/workflows/create_release.yml
new file mode 100644
index 0000000..c7fdf5c
--- /dev/null
+++ b/.github/workflows/create_release.yml
@@ -0,0 +1,33 @@
+name: Create release
+
+on:
+ pull_request:
+ branches:
+ - main
+ types: [closed]
+
+jobs:
+ create_release:
+ name: Create release
+ if: github.event.pull_request.merged == true
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v3
+ - name: Check for the PR label
+ id: label
+ uses: zwaldowski/match-label-action@v4
+ with:
+ allowed: major,minor,patch
+ - name: Bump the version tag
+ id: next_version
+ uses: zwaldowski/semver-release-action@v3
+ with:
+ bump: ${{ steps.label.outputs.match }}
+ prefix: v
+ github_token: ${{ secrets.GITHUB_TOKEN }}
+ - name: Create release
+ id: create-release
+ uses: ncipollo/release-action@v1
+ with:
+ tag: v${{ steps.next_version.outputs.version }}
+ token: ${{ secrets.GITHUB_TOKEN }}