Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 6c3725b

Browse files
authoredFeb 25, 2022
ci: fix dependabot auto-merge condition (#433)
1 parent 9f1fa32 commit 6c3725b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎.github/workflows/dependabot-auto-merge.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
with:
2020
github-token: "${{ secrets.GITHUB_TOKEN }}"
2121
- name: Enable auto-merge for Dependabot PRs
22-
if: ${{contains(steps.metadata.outputs.dependency-names, 'my-dependency') && steps.metadata.outputs.update-type == 'version-update:semver-patch'}}
22+
if: ${{steps.metadata.outputs.update-type == 'version-update:semver-patch'}}
2323
run: gh pr merge --auto --merge "$PR_URL"
2424
env:
2525
PR_URL: ${{github.event.pull_request.html_url}}

0 commit comments

Comments
 (0)
Please sign in to comment.