Skip to content

Commit a1473e0

Browse files
authored
Add workflow_dispatch trigger to release preparation
1 parent bf2ffd7 commit a1473e0

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed
Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,22 @@
11
name: Quarkiverse Prepare Release
22

33
on:
4+
workflow_dispatch:
45
pull_request:
56
types: [ closed ]
67
paths:
78
- '.github/project.yml'
89

910
permissions:
1011
contents: read
11-
12+
1213
concurrency:
1314
group: ${{ github.workflow }}-${{ github.ref }}
1415
cancel-in-progress: true
1516

1617
jobs:
1718
prepare-release:
1819
name: Prepare Release
19-
if: ${{ github.event.pull_request.merged == true}}
20+
if: ${{ github.event_name == 'workflow_dispatch' || github.event.pull_request.merged == true}}
2021
uses: quarkiverse/.github/.github/workflows/prepare-release.yml@main
2122
secrets: inherit

0 commit comments

Comments
 (0)