feat: Add support for backport automation - #104
Merged
Merged
Conversation
🤖 Backport labels populatedLabels to this pull request were added automatically by the When the PR is merged, backport PRs according to the labels will be automatically created. To skip the backport creation, remove any unneeded labels before merging the PR. |
mvlassis
requested review from
a team and
NohaIhab
and
a lite review from Copilot
September 1, 2026 09:17
There was a problem hiding this comment.
Pull request overview
This PR introduces GitHub Actions-based backport automation for merges into main, using track/1.0 as the configured backport target.
Changes:
- Adds a PR-open workflow to populate backport labels based on a track configuration file.
- Adds a PR-merged workflow to automatically create backport PRs based on applied labels.
- Introduces
.github/automatic_backport_tracks.yamldefiningtrack/1.0as the backport track.
Reviewed changes
Copilot reviewed 3 out of 3 changed files in this pull request and generated 4 comments.
| File | Description |
|---|---|
| .github/workflows/on_pull_request.yaml | Populates backport labels when PRs are opened/reopened against main. |
| .github/workflows/on_pull_request_closed.yaml | Creates backport PRs automatically when PRs are merged into main. |
| .github/automatic_backport_tracks.yaml | Declares the automatic backport track(s) to drive label/backport behavior. |
💡 Add a code-review agent skill or configure MCP servers for context-aware, tailored reviews. Learn more in the docs.
NohaIhab
approved these changes
Sep 1, 2026
MattiaSarti
approved these changes
Sep 1, 2026
|
Successfully created backport PR for |
mvlassis
added a commit
that referenced
this pull request
Sep 3, 2026
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
This PR adds backport automation to the repository.
Note: We choose
track/1.0as the track to automatically backport.Closes #103