Skip to content

Commit

Permalink
[TASK] Introduce backport workflow (#366)
Browse files Browse the repository at this point in the history
* [TASK] Introduce backport workflow

So that while we are working on two versions
we can do automatic backports via label

* Update .github/workflows/backport.yml

---------

Co-authored-by: Chris Müller <[email protected]>
  • Loading branch information
linawolf and brotkrueml authored Jan 20, 2024
1 parent 8e9f83a commit 8238363
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/backport.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Backport
on:
pull_request_target:
types:
- closed
- labeled

jobs:
backport:
runs-on: ubuntu-latest
name: Backport
steps:
- name: Backport
uses: m-kuhn/[email protected]
with:
github_token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 8238363

Please sign in to comment.