Skip to content

Commit

Permalink
ci: change backport config (#273)
Browse files Browse the repository at this point in the history
(cherry picked from commit 76fc626)
  • Loading branch information
MyuddinKhatri authored and github-actions[bot] committed Jul 30, 2024
1 parent db40e9f commit 3ee8b32
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 27 deletions.
11 changes: 0 additions & 11 deletions .backportrc.json

This file was deleted.

34 changes: 18 additions & 16 deletions .github/workflows/backport.yml
Original file line number Diff line number Diff line change
@@ -1,24 +1,26 @@
name: Automatic backport action

name: Backport
on:
pull_request_target:
types: ["labeled", "closed"]
types:
- closed
- labeled

jobs:
backport:
name: Backport PR
name: Backport
runs-on: ubuntu-latest
# Only react to merged PRs for security reasons.
# See https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#pull_request_target.
if: >
github.event.pull_request.merged
&& (
github.event.action == 'closed'
|| (
github.event.action == 'labeled'
&& contains(github.event.label.name, 'backport')
)
)
steps:
- name: Backport Action
uses: sorenlouv/[email protected]
- uses: tibdex/backport@v2
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
auto_backport_label_prefix: backport-to-

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

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

0 comments on commit 3ee8b32

Please sign in to comment.