Merge pull request #2387 from freifunk-gluon/backport-action

This commit is contained in:
Martin Weinelt 2022-02-01 01:26:56 +01:00 committed by GitHub
commit ae1187a29e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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

@ -0,0 +1,21 @@
name: Backport
on:
pull_request_target:
types: [closed, labeled]
jobs:
backport:
name: Backport Pull Request
if: github.repository_owner == 'freifunk-gluon' && github.event.pull_request.merged == true && (github.event_name != 'labeled' || startsWith('backport', github.event.label.name))
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
ref: ${{ github.event.pull_request.head.sha }}
- name: Create backport PRs
uses: zeebe-io/backport-action@v0.0.7
with:
# Config README: https://github.com/zeebe-io/backport-action#backport-action
github_token: ${{ secrets.GITHUB_TOKEN }}
github_workspace: ${{ github.workspace }}
pull_description: |-
Automatic backport to `${target_branch}`, triggered by a label in #${pull_number}.