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

gitops-pull-request: add missing when conditions #1201

Merged
merged 1 commit into from
Jul 26, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions pipelines/gitops-pull-request-rhtap/gitops-pull-request.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,10 @@ spec:
value: $(params.ec-tuf-mirror)
runAfter:
- get-images-to-verify
when:
- input: $(tasks.get-images-to-verify.results.IMAGES_TO_VERIFY)
operator: notin
values: [""]
taskRef:
name: verify-enterprise-contract
version: "0.1"
Expand All @@ -110,6 +114,10 @@ spec:
- name: download-sboms
runAfter:
- get-images-to-upload-sbom
when:
- input: $(tasks.get-images-to-upload-sbom.results.IMAGES_TO_VERIFY)
operator: notin
values: [""]
params:
- name: IMAGES
value: $(tasks.get-images-to-upload-sbom.results.IMAGES_TO_VERIFY)
Expand All @@ -131,6 +139,10 @@ spec:
- name: upload-sboms-to-trustification
runAfter:
- download-sboms
when:
- input: $(tasks.get-images-to-upload-sbom.results.IMAGES_TO_VERIFY)
operator: notin
values: [""]
params:
- name: SBOMS_DIR
value: sboms
Expand Down
Loading