Skip to content

Commit 01e4362

Browse files
committed
fix(workflow): update auto-merge condition for Dependabot PRs
Change condition from 'semver-patch' to 'semver-minor' for auto-merging.
1 parent 15eb2f8 commit 01e4362

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ jobs:
7676
with:
7777
github-token: "${{ secrets.GITHUB_TOKEN }}"
7878
- name: Enable auto-merge for Dependabot PRs
79-
if: steps.metadata.outputs.update-type == 'version-update:semver-patch'
79+
if: steps.metadata.outputs.update-type == 'version-update:semver-minor'
8080
run: gh pr merge --auto --merge "$PR_URL"
8181
env:
8282
PR_URL: ${{github.event.pull_request.html_url}}

0 commit comments

Comments
 (0)