We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6fb7b71 commit 2cb4a25Copy full SHA for 2cb4a25
.github/workflows/dependabot-auto-merge.yml
@@ -20,9 +20,12 @@ jobs:
20
github-token: "${{ secrets.GITHUB_TOKEN }}"
21
22
- name: Auto-approve and merge
23
- if: steps.metadata.outputs.update-type == 'version-update:semver-patch'
+ if: |
24
+ steps.metadata.outputs.update-type == 'version-update:semver-patch' ||
25
+ steps.metadata.outputs.update-type == 'version-update:semver-minor' ||
26
+ steps.metadata.outputs.dependency-type == 'direct:development'
27
run: |
- gh pr review --approve "$PR_URL" --body "Auto-approved patch update"
28
+ gh pr review --approve "$PR_URL" --body "Auto-approved dependency update"
29
gh pr merge --auto --squash "$PR_URL"
30
env:
31
PR_URL: ${{ github.event.pull_request.html_url }}
0 commit comments