Skip to content

Commit 5bcc7bb

Browse files
Added the missing github action workflows (#8)
1 parent e96ea7e commit 5bcc7bb

File tree

2 files changed

+41
-0
lines changed

2 files changed

+41
-0
lines changed
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
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
on:
2+
pull_request:
3+
branches: [ "main" ]
4+
5+
name: validate-branch-name
6+
7+
permissions:
8+
contents: read
9+
10+
jobs:
11+
lint:
12+
name: Validate Branch Name
13+
runs-on: ubuntu-latest
14+
steps:
15+
- uses: actions/checkout@v3
16+
- name: Validate Branch Name
17+
uses: launchbynttdata/actions-lcaf-branch_name@v0

0 commit comments

Comments
 (0)