Skip to content

Commit 713ae54

Browse files
Potential fix for pull request finding
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
1 parent 8b8856f commit 713ae54

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

.github/workflows/dependabot-automerge.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,11 @@ jobs:
1616
with:
1717
github-token: "${{ secrets.GITHUB_TOKEN }}"
1818

19-
- name: Enable automerge for Patch and Minor updates
19+
- name: Enable automerge for Patch, Minor, and Security updates
2020
if: |
2121
steps.metadata.outputs.update-type == 'version-update:semver-patch' ||
22-
steps.metadata.outputs.update-type == 'version-update:semver-minor'
22+
steps.metadata.outputs.update-type == 'version-update:semver-minor' ||
23+
steps.metadata.outputs.update-type == 'security-update'
2324
run: gh pr merge --auto --merge "$PR_URL"
2425
env:
2526
PR_URL: ${{ github.event.pull_request.html_url }}

0 commit comments

Comments
 (0)