Skip to content

Commit

Permalink
add backport action to cluster-api
Browse files Browse the repository at this point in the history
  • Loading branch information
AmitSahastra authored and jayesh-srivastava committed Oct 4, 2024
1 parent 3acb212 commit 571afe6
Show file tree
Hide file tree
Showing 2 changed files with 47 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .backportrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"repoOwner": "spectrocloud",
"repoName": "palette",
"editor": "code",

"targetBranchChoices": ["spectro-master", "spectro-release-4.5"],
"mainline": 1,
"autoMerge": false,
"autoMergeMethod": "squash",
"targetPRLabels": ["ok-to-test"],
"commitConflicts": true,
"branchLabelMapping": {
"^backport-(.+)$": "$1"
}
}
32 changes: 32 additions & 0 deletions .github/workflows/backport.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Backport

on:
pull_request_target:
types: ["labeled", "closed"]

jobs:
backport:
name: Backport PR
runs-on: ubuntu-latest
if: |
github.event.pull_request.merged == true
&& contains(github.event.pull_request.labels.*.name, 'auto-backport')
&& (
(github.event.action == 'labeled' && github.event.label.name == 'auto-backport')
|| (github.event.action == 'closed')
)
steps:
- name: Backport Action
uses: sqren/[email protected]
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
auto_backport_label_prefix: backport-
add_original_reviewers: true

- name: Info log
if: ${{ success() }}
run: cat ~/.backport/backport.info.log

- name: Debug log
if: ${{ failure() }}
run: cat ~/.backport/backport.debug.log

0 comments on commit 571afe6

Please sign in to comment.