Skip to content

Commit e069e2d

Browse files
Automation: install workflow
1 parent 712b626 commit e069e2d

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
on:
2+
pull_request:
3+
types:
4+
- closed
5+
branches:
6+
- main
7+
8+
name: increment-tagged-version
9+
10+
permissions:
11+
contents: write
12+
13+
jobs:
14+
increment_tag:
15+
if: github.event.pull_request.merged == true
16+
runs-on: ubuntu-latest
17+
steps:
18+
- uses: actions/checkout@v3
19+
with:
20+
ref: 'main'
21+
- name: Fetch Tags
22+
run: git fetch --tags origin
23+
- name: Increment Tagged Version
24+
uses: launchbynttdata/actions-lcaf-increment_tagged_version@v0

0 commit comments

Comments
 (0)