Merged
Conversation
MattIPv4
commented
Mar 1, 2026
Contributor
There was a problem hiding this comment.
Pull request overview
Adds a scheduled GitHub Actions workflow to automatically merge eligible pull requests, primarily to reduce manual follow-up for PRs (e.g., Dependabot) that are approved but intentionally left open for a policy-mandated waiting period.
Changes:
- Introduces a new scheduled workflow that scans open PRs on the default branch every 15 minutes.
- Filters to PRs labeled
auto-mergeand open for at least 2 days. - Merges PRs (squash) when an approval exists after the most recent commit and the PR is mergeable.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
avivkeller
suggested changes
Mar 1, 2026
avivkeller
reviewed
Mar 1, 2026
This comment was marked as resolved.
This comment was marked as resolved.
3717e49 to
03e4823
Compare
03e4823 to
e2b9147
Compare
avivkeller
approved these changes
Mar 1, 2026
flakey5
approved these changes
Mar 2, 2026
Contributor
bmuenzenmeyer
left a comment
There was a problem hiding this comment.
i do think it would be a good idea to add harden-runner - we seem to use it elsewhere.
#101
thoughts?
Member
Author
|
👍 Added, not sure it'll do much given we're just making GitHub API calls, but also no harm |
bmuenzenmeyer
approved these changes
Mar 2, 2026
Member
Author
|
Will merge this in a couple of days and then try it out against the Dependabot PRs here 🫡 |
AugustinMauroy
approved these changes
Mar 2, 2026
ovflowd
reviewed
Mar 2, 2026
4 tasks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Adds a new workflow to automatically merge pull requests with the
auto-mergelabel that have an approval after the most recent commit, and have been open for at least two days. This should make our lives a bit easier for things like Dependabot PRs, where we approve them when they're originally opened but often forget to merge them two days later per our policy.