Skip to content

Commit

Permalink
Only merge when told
Browse files Browse the repository at this point in the history
We are seeing provider's merge without review or release. I believe it is because
`automerge` is set to `"false"`, which is truthy.
  • Loading branch information
iwahbe committed Oct 9, 2023
1 parent d88b3c6 commit 505e393
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ runs:
env:
GH_TOKEN: ${{ env.GH_TOKEN }}
- name: Set PR to auto-merge
if: ${{ inputs.automerge }}
if: ${{ inputs.automerge == 'true' }}
# This tolerates repos that do not have auto-merge enabled. `continue-on-error: true`
# should be removed when https://github.com/pulumi/home/issues/3140 closes.
continue-on-error: true
Expand Down

0 comments on commit 505e393

Please sign in to comment.