mirror of
https://github.com/bitnami/charts.git
synced 2026-02-14 07:07:09 +08:00
fix(ci-pipeline): Avoid fail messages on skipped pipelines (#34512)
Signed-off-by: Fran Mulero <francisco-jose.mulero@broadcom.com>
This commit is contained in:
2
.github/workflows/ci-pipeline.yml
vendored
2
.github/workflows/ci-pipeline.yml
vendored
@@ -657,7 +657,7 @@ jobs:
|
||||
# If the CI did not succeed ('VIB Verify' failed or skipped),
|
||||
# post a comment on the PR and assign a maintainer agent to review it
|
||||
- name: Manual review required
|
||||
if: ${{ always() && github.run_attempt >= vars.MAX_RUNS_ATTEMPTS && (needs.vib-verify.result != 'success' || steps.merge.outcome != 'success' ) }}
|
||||
if: ${{ always() && github.run_attempt >= vars.MAX_RUNS_ATTEMPTS && needs.vib-verify.result != 'skipped' && (needs.vib-verify.result != 'success' || steps.merge.outcome != 'success' ) }}
|
||||
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea
|
||||
env:
|
||||
BODY: |
|
||||
|
||||
Reference in New Issue
Block a user