Skip to content

Commit 8c7a89b

Browse files
authored
Add GitHub Actions workflow for release creation
1 parent 41141df commit 8c7a89b

1 file changed

Lines changed: 15 additions & 0 deletions

File tree

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: Create release
2+
on:
3+
pull_request_target:
4+
branches:
5+
- main
6+
types:
7+
- closed
8+
jobs:
9+
release:
10+
if: github.event.pull_request.merged == true && !contains(github.event.pull_request.title, 'skip-release')
11+
uses: libops/.github/.github/workflows/bump-release.yaml@main
12+
permissions:
13+
contents: write
14+
actions: write
15+
secrets: inherit

0 commit comments

Comments
 (0)