mirror of
https://github.com/inventree/InvenTree
synced 2024-08-30 18:33:04 +00:00
33 lines
843 B
YAML
33 lines
843 B
YAML
# 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
|
|
|
|
name: Backport
|
|
|
|
on:
|
|
pull_request_target:
|
|
types: [ "labeled", "closed" ]
|
|
|
|
permissions:
|
|
contents: write
|
|
|
|
jobs:
|
|
backport:
|
|
name: Backport PR
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Backport Action
|
|
uses: sqren/backport-github-action@848927304bbe2d5d1baa6e14383c12d85caf381e # pin@v9.3.0
|
|
with:
|
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
|
auto_backport_label_prefix: backport-to-
|
|
|
|
- name: Info log
|
|
if: ${{ success() }}
|
|
run: cat ~/.backport/backport.info.log
|
|
|
|
- name: Debug log
|
|
if: ${{ failure() }}
|
|
run: cat ~/.backport/backport.debug.log
|