Skip to content

Commit 4e5cf6f

Browse files
committed
fix: fixing broken pipelines
1 parent 38b498b commit 4e5cf6f

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

circleci-orbs/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ runs:
151151
*Generated by the CircleCI Orbs Update action* :sparkles:
152152
153153
- name: Auto-merge Pull Request
154-
if: inputs.auto-merge == 'true'
154+
if: inputs.auto-merge == 'true' && steps.open-pr.outcome == 'success'
155155
uses: alchemaxinc/composite-toolbox/merge-pr@v1
156156
with:
157157
token: ${{ inputs.token }}

golang/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ runs:
9494
*Generated by the Go Dependencies Update action* :sparkles:
9595
9696
- name: Auto-merge Pull Request
97-
if: inputs.auto-merge == 'true'
97+
if: inputs.auto-merge == 'true' && steps.open-pr.outcome == 'success'
9898
uses: alchemaxinc/composite-toolbox/merge-pr@v1
9999
with:
100100
token: ${{ inputs.token }}

npm/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ runs:
127127
*Generated by the NPM Dependencies Update action* :sparkles:
128128
129129
- name: Auto-merge Pull Request
130-
if: inputs.auto-merge == 'true'
130+
if: inputs.auto-merge == 'true' && steps.open-pr.outcome == 'success'
131131
uses: alchemaxinc/composite-toolbox/merge-pr@v1
132132
with:
133133
token: ${{ inputs.token }}

terraform/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ runs:
123123
*Generated by the Terraform Dependencies Update action* :sparkles:
124124
125125
- name: Auto-merge Pull Request
126-
if: inputs.auto-merge == 'true'
126+
if: inputs.auto-merge == 'true' && steps.open-pr.outcome == 'success'
127127
uses: alchemaxinc/composite-toolbox/merge-pr@v1
128128
with:
129129
token: ${{ inputs.token }}

0 commit comments

Comments
 (0)