Skip to content

Commit

Permalink
Merge pull request #362 from gpontejos/add-manual-release-action
Browse files Browse the repository at this point in the history
Add manual release github action
  • Loading branch information
gpontejos authored Feb 4, 2025
2 parents 99ddb26 + 4f013bc commit 1ba1904
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/helm-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,11 @@ on:
- main
paths:
- 'helm-charts/**'
workflow_dispatch:

jobs:
release:
if: github.event.pull_request.merged == true && contains(github.event.pull_request.labels.*.name, 'release')
if: (github.event.pull_request.merged == true && contains(github.event.pull_request.labels.*.name, 'release')) || github.event_name == 'workflow_dispatch'
runs-on: ubuntu-latest
steps:
- name: Checkout
Expand Down

0 comments on commit 1ba1904

Please sign in to comment.