Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: modify conditions for release PR comments #186

Merged
Prev Previous commit
Next Next commit
test: stop releases outright
rdash99 committed Oct 9, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
commit 27813018150cc809c2b883305f0f12160031b461
2 changes: 1 addition & 1 deletion .github/workflows/bulk-pr-and-release-chart.yaml
Original file line number Diff line number Diff line change
@@ -114,7 +114,7 @@ jobs:
registry-token: ${{ secrets.registry-token }}

- name: release
if: github.event_name == 'push'
if: github.event_name == 'push' && inputs.release-info != ''
uses: ./.tmp/.github/actions/bulk-release-chart
with:
job-name: ${{ inputs.job-name }}
2 changes: 1 addition & 1 deletion .github/workflows/bulk-pr-and-release-container.yaml
Original file line number Diff line number Diff line change
@@ -125,7 +125,7 @@ jobs:
cosign-password: ${{ secrets.cosign-password }}

- name: release
if: github.event_name == 'push'
if: github.event_name == 'push' && inputs.release-info != ''
uses: ./.tmp/.github/actions/bulk-release-container
with:
job-name: ${{ inputs.job-name }}
Loading