Skip to content

Commit

Permalink
Properly handle GitLab merge request event in RHTAP pipeline (#921)
Browse files Browse the repository at this point in the history
  • Loading branch information
mmorhun authored Apr 4, 2024
1 parent c000d54 commit b806ca7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions pipelines/docker-build-rhtap/patch.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -133,9 +133,9 @@
runAfter:
- update-deployment
when:
- input: "pull_request"
- input: "$(params.event-type)"
operator: notin
values: ["$(params.event-type)"]
values: ["pull_request", "Merge Request"]
taskRef:
kind: Task
name: acs-deploy-check
Expand All @@ -153,9 +153,9 @@
runAfter:
- build-container
when:
- input: "pull_request"
- input: "$(params.event-type)"
operator: notin
values: ["$(params.event-type)"]
values: ["pull_request", "Merge Request"]
taskRef:
kind: Task
name: update-deployment
Expand Down

0 comments on commit b806ca7

Please sign in to comment.