-
Notifications
You must be signed in to change notification settings - Fork 0
ci(Mergify): configuration update #331
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| @@ -0,0 +1,28 @@ | ||||||||||||||||||
| pull_request_rules: | ||||||||||||||||||
| - name: Make sure PR are update before merging with rebase | ||||||||||||||||||
| description: This automatically rebases PRs when they are out-of-date with the | ||||||||||||||||||
| base branch to avoid semantic conflicts (next step us switch to merge | ||||||||||||||||||
|
||||||||||||||||||
| base branch to avoid semantic conflicts (next step us switch to merge | |
| base branch to avoid semantic conflicts (next step is to switch to merge |
Copilot
AI
May 1, 2026
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The rule description says PRs are rebased when they are out-of-date with the base branch, but the condition only triggers when #commits-behind >= 10. Either lower the threshold (e.g., > 0) or update the description so it matches the actual behavior.
| - name: Make sure PR are update before merging with rebase | |
| description: This automatically rebases PRs when they are out-of-date with the | |
| base branch to avoid semantic conflicts (next step us switch to merge | |
| queue). | |
| - name: Rebase PRs when they are 10 or more commits behind | |
| description: This automatically rebases PRs when they are 10 or more | |
| commits behind the base branch to avoid semantic conflicts (next step | |
| us switch to merge queue). |
Copilot
AI
May 1, 2026
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
actions.rebase is declared without a value (rebase:), which parses as null in YAML. Use an explicit empty mapping (or provide required keys) to avoid Mergify config validation/runtime errors.
| rebase: | |
| rebase: {} |
Copilot
AI
May 1, 2026
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Grammar: "their PR are conflicting" should be "their PR is conflicting" (or "their PRs are conflicting").
| description: Warn the pull request author when their PR are conflicting | |
| description: Warn the pull request author when their PR is conflicting |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Grammar: update the rule name to use correct pluralization/verb form (e.g., "Make sure PRs are updated before merging with rebase").