Conversation
voloagent
approved these changes
Aug 19, 2026
Contributor
There was a problem hiding this comment.
Pull request overview
Introduces a new GitHub Actions workflow to automatically “forward-merge” changes across rel-x.y branches (and ultimately into dev) and removes the previous one-off legacy workflow that only handled dev -> rel-10.7.
Changes:
- Removed legacy
.github/workflows/auto-pr.ymlworkflow. - Added
.github/workflows/auto-merge-forward.ymlto compute the next forward target (rel-*ordev), create a merge branch, open a PR, and auto-merge when there are no conflicts.
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
.github/workflows/auto-pr.yml |
Deletes the legacy, single-branch auto PR workflow (dev -> rel-10.7). |
.github/workflows/auto-merge-forward.yml |
Adds generalized forward-merge automation across release branches, with conflict detection and optional auto-merge. |
💡 Add a code-review agent skill or configure MCP servers for context-aware, tailored reviews. Learn more in the docs.
Comment on lines
+141
to
+144
| set -euo pipefail | ||
| FORWARD_BRANCH="${{ steps.merge.outputs.branch }}" | ||
| gh pr review "$FORWARD_BRANCH" --approve | ||
| gh pr merge "$FORWARD_BRANCH" --merge --auto --delete-branch |
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.
Description
Resolves #xxxx (write the related issue number if available)
TODO: Describe what this PR has changed, add screenshot or animated GIF if available, write if it is a breaking change, and how to fix the breaking changes for existing applications if so.
Checklist
How to test it?
Please describe how this can be tested by the test engineers if it is not already explicit - or remove this section if no need to description.