Skip to content

Commit 1ba1904

Browse files
authored
Merge pull request #362 from gpontejos/add-manual-release-action
Add manual release github action
2 parents 99ddb26 + 4f013bc commit 1ba1904

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/helm-release.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,11 @@ on:
77
- main
88
paths:
99
- 'helm-charts/**'
10+
workflow_dispatch:
1011

1112
jobs:
1213
release:
13-
if: github.event.pull_request.merged == true && contains(github.event.pull_request.labels.*.name, 'release')
14+
if: (github.event.pull_request.merged == true && contains(github.event.pull_request.labels.*.name, 'release')) || github.event_name == 'workflow_dispatch'
1415
runs-on: ubuntu-latest
1516
steps:
1617
- name: Checkout

0 commit comments

Comments
 (0)