-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
Signed-off-by: Tomoya Fujita <[email protected]> (cherry picked from commit f4d31d2) Co-authored-by: Tomoya Fujita <[email protected]>
- Loading branch information
1 parent
5acabb9
commit b72693a
Showing
1 changed file
with
49 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
pull_request_rules: | ||
- name: automatic backport to all supported distribution | ||
description: | | ||
This rule backports a PR to all supported distribution branches when it is merged. | ||
conditions: | ||
- base=rolling | ||
- merged | ||
actions: | ||
backport: | ||
branches: | ||
- jazzy | ||
- humble | ||
|
||
- name: backport at reviewers discretion | ||
description: | | ||
This rule backports a PR to all supported distribution branches when it is labeled. | ||
conditions: | ||
- base=rolling | ||
- "label=backport-all" | ||
- merged | ||
actions: | ||
backport: | ||
branches: | ||
- jazzy | ||
- humble | ||
|
||
- name: backport to jazzy at reviewers discretion | ||
description: | | ||
This rule backports a PR to the jazzy distribution branch when it is labeled. | ||
conditions: | ||
- base=rolling | ||
- "label=backport-jazzy" | ||
- merged | ||
actions: | ||
backport: | ||
branches: | ||
- jazzy | ||
|
||
- name: backport to humble at reviewers discretion | ||
description: | | ||
This rule backports a PR to the humble distribution branch when it is labeled. | ||
conditions: | ||
- base=rolling | ||
- "label=backport-humble" | ||
- merged | ||
actions: | ||
backport: | ||
branches: | ||
- humble |