feat(actions): add backport bot

This commit is contained in:
Sefa Eyeoglu 2022-03-21 14:46:01 +01:00
parent 062fc79286
commit 3c0c57359b
No known key found for this signature in database
GPG Key ID: C10411294912A422

17
.github/workflows/backport.yml vendored Normal file
View File

@ -0,0 +1,17 @@
name: Backport PR to stable
on:
pull_request:
branches: [ develop ]
types: [ closed ]
jobs:
release_pull_request:
if: github.event.pull_request.merged == true && contains(github.event.pull_request.labels.*.name, 'backport')
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v1
- name: Backport PR by cherry-pick-ing
uses: Nathanmalnoury/gh-backport-action@master
with:
pr_branch: 'stable'
github_token: ${{ secrets.GITHUB_TOKEN }}