Skip to content

Commit 126f692

Browse files
authored
Versioning #minor (#24)
1 parent aa51d3d commit 126f692

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

.github/workflows/versioning.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# Manual Bumping: Any PR title or commit message that includes #major, #minor, or #patch
2+
# will trigger the respective version bump. If two or more are present,
3+
# the highest-ranking one will take precedence.
4+
5+
name: Bump version
6+
on:
7+
push:
8+
branches:
9+
- master
10+
jobs:
11+
build:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: actions/checkout@v2
15+
with:
16+
fetch-depth: '0'
17+
- name: Bump version and push tag
18+
uses: anothrNick/github-tag-action@1.34.0
19+
env:
20+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
21+
WITH_V: true
22+
DEFAULT_BUMP: none

0 commit comments

Comments
 (0)