We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8b8856f commit 713ae54Copy full SHA for 713ae54
1 file changed
.github/workflows/dependabot-automerge.yml
@@ -16,10 +16,11 @@ jobs:
16
with:
17
github-token: "${{ secrets.GITHUB_TOKEN }}"
18
19
- - name: Enable automerge for Patch and Minor updates
+ - name: Enable automerge for Patch, Minor, and Security updates
20
if: |
21
steps.metadata.outputs.update-type == 'version-update:semver-patch' ||
22
- steps.metadata.outputs.update-type == 'version-update:semver-minor'
+ steps.metadata.outputs.update-type == 'version-update:semver-minor' ||
23
+ steps.metadata.outputs.update-type == 'security-update'
24
run: gh pr merge --auto --merge "$PR_URL"
25
env:
26
PR_URL: ${{ github.event.pull_request.html_url }}
0 commit comments