Skip to content

Commit

Permalink
[Fixes #266] add backport bot (#268) (#269)
Browse files Browse the repository at this point in the history
(cherry picked from commit 688deb0)

Co-authored-by: mattiagiupponi <[email protected]>
  • Loading branch information
github-actions[bot] and mattiagiupponi authored Aug 1, 2024
1 parent 4d9c47c commit b9666d1
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/backport.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Backport
on:
pull_request_target:
types:
- closed
- labeled

jobs:
backport:
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: Backporting
uses: tibdex/backport@v2
with:
github_token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit b9666d1

Please sign in to comment.