We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 99ddb26 + 4f013bc commit 1ba1904Copy full SHA for 1ba1904
.github/workflows/helm-release.yml
@@ -7,10 +7,11 @@ on:
7
- main
8
paths:
9
- 'helm-charts/**'
10
+ workflow_dispatch:
11
12
jobs:
13
release:
- 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'
15
runs-on: ubuntu-latest
16
steps:
17
- name: Checkout
0 commit comments