Skip to content

Commit 0825e9b

Browse files
committed
additional clarification
1 parent 0378ffb commit 0825e9b

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

docs/how-to-guides/dependabot-auto-merge.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,8 @@ Please see [dependabot.yaml configuration syntax][configure-dependabot-yaml] for
4545
This workflow will trigger when dependabot opens a pull request.
4646
All minor and patch-level changes are automatically merged.
4747
Major version bumps needs manual merging.
48+
Additionally, all GitHub Actions workflow version bumps will be merged automatically, even if they are major bumps.
49+
4850
See also [Automating Dependabot with GitHub Actions][automating-dependabot].
4951

5052
!!! note ".github/workflows/dependabot-auto-merge.yaml"
@@ -99,7 +101,8 @@ and
99101
# Determine the name of the main branch
100102
main_branch=$(git symbolic-ref --short HEAD 2>/dev/null || git branch -l --no-color | grep -E '^[*]' | sed 's/^[* ] //')
101103

102-
# Configure branch protection
104+
# Configure branch protection, and require tests to pass before merging.
105+
# Match the list of checks up against repository workflows.
103106
echo '{ "required_status_checks": { "strict": true, "checks": [ { "context": "test" } ] }, "enforce_admins": false, "required_pull_request_reviews": null, "required_conversation_resolution": true, "restrictions": null }' | \
104107
gh api repos/"$owner"/"$repo_name"/branches/"$main_branch"/protection \
105108
--method PUT \

0 commit comments

Comments
 (0)