Skip to content

Commit

Permalink
Add backport action
Browse files Browse the repository at this point in the history
Allows for easy backporting of pull requests. Simply just tag a pull request
with e.g. `backport 1.2` to create a backport PR against the `1.2`
branch.

For more info, see https://github.com/m-kuhn/backport
  • Loading branch information
kbevers authored and github-actions[bot] committed Oct 26, 2022
1 parent 1f61de9 commit 75214c2
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-18.04
name: Backport
steps:
- name: Backport
uses: m-kuhn/[email protected]
with:
github_token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 75214c2

Please sign in to comment.