Skip to content

Commit be245d9

Browse files
feat: add automatic release creation workflow and update manual release job reference
1 parent bc3d0ff commit be245d9

3 files changed

Lines changed: 20 additions & 1 deletion

File tree

.github/workflows/auto-pull-request-create.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ on:
55
branches-ignore:
66
- master
77
- main
8+
- release/**
89
- dependabot/**
910

1011
permissions:
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: (Automatic) Release Create
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
- main
8+
9+
permissions:
10+
contents: write
11+
pull-requests: read
12+
13+
jobs:
14+
call:
15+
uses: devops-infra/.github/.github/workflows/reusable-automatic-release-create.yml@v1
16+
with:
17+
profile: actions
18+
secrets: inherit

.github/workflows/manual-release-create.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ permissions:
3030

3131
jobs:
3232
call:
33-
uses: devops-infra/.github/.github/workflows/reusable-manual-release-create.yml@v1
33+
uses: devops-infra/.github/.github/workflows/reusable-manual-release-branch-prepare.yml@v1
3434
with:
3535
bump-type: ${{ inputs.type }}
3636
explicit-version: ${{ inputs.version }}

0 commit comments

Comments
 (0)