We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 32e95a2 commit f7edefcCopy full SHA for f7edefc
.github/workflows/fmt:check.yml .github/workflows/fmt-check.yml.github/workflows/fmt:check.yml renamed to .github/workflows/fmt-check.yml
.github/workflows/scan:trivy.yml .github/workflows/scan-trivy.yml.github/workflows/scan:trivy.yml renamed to .github/workflows/scan-trivy.yml
.github/workflows/tag-bump.yml
@@ -0,0 +1,25 @@
1
+name: Bump version
2
+on:
3
+ pull_request:
4
+ types:
5
+ - closed
6
+ branches:
7
+ - main
8
+
9
+jobs:
10
+ build:
11
+ if: github.event.pull_request.merged == true
12
+ runs-on: ubuntu-22.04
13
+ permissions:
14
+ contents: write
15
+ steps:
16
+ - uses: actions/checkout@v4
17
+ with:
18
+ ref: ${{ github.event.pull_request.merge_commit_sha }}
19
+ fetch-depth: '0'
20
21
+ - name: Bump version and push tag
22
+ uses: anothrNick/github-tag-action@1.75.0
23
+ env:
24
+ TAG_PREFIX: 'v'
25
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments