InvenTree/.github/workflows/backport.yml

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
749 B
YAML
Raw Normal View History

# Backport tagged issues to a stable branch.
#
# To enable backporting for a pullrequest, add the label "backport" to the PR.
# Additionally, add a label with the prefix "backport-to-" and the target branch
2023-05-28 10:26:39 +00:00
name: Backport
on:
pull_request_target:
2023-10-24 22:18:53 +00:00
types: [ "labeled", "closed" ]
jobs:
backport:
name: Backport PR
runs-on: ubuntu-latest
permissions:
contents: write
pull-requests: write
if: github.event.pull_request.merged
steps:
- name: Backport Action
uses: korthout/backport-action@ef20d86abccbac3ee3a73cb2efbdc06344c390e5 # Pinned at v2.5.0
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
copy_labels_pattern: '*'
label_pattern: '^backport-to-(.+)$'