4083f150c0
- set permissions explicitly, as recommended in their docs - drop github_token and github_workspace (now set per default) - ownership has moved from "zeebe-io" to the main developer "korthout" backport-action will follow semver from now on
21 lines
790 B
YAML
21 lines
790 B
YAML
name: Backport
|
|
on:
|
|
pull_request_target:
|
|
types: [closed, labeled]
|
|
permissions:
|
|
contents: write # so it can comment
|
|
pull-requests: write # so it can create pull requests
|
|
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@v3
|
|
- name: Create backport PRs
|
|
uses: korthout/backport-action@v1.0.1
|
|
with:
|
|
# Config README: https://github.com/korthout/backport-action#backport-action
|
|
pull_description: |-
|
|
Automatic backport to `${target_branch}`, triggered by a label in #${pull_number}.
|