mirror of
https://github.com/borgbackup/borg.git
synced 2026-03-13 06:05:36 -04:00
Some checks failed
Lint / lint (push) Has been cancelled
CI / lint (push) Has been cancelled
CI / security (push) Has been cancelled
CodeQL / Analyze (push) Has been cancelled
CI / linux (ubuntu-22.04, 3.10, mypy) (push) Has been cancelled
CI / linux (ubuntu-22.04, 3.10, py310-fuse2) (push) Has been cancelled
CI / linux (ubuntu-22.04, 3.11, docs) (push) Has been cancelled
CI / linux (ubuntu-22.04, 3.11, py311-fuse3) (push) Has been cancelled
CI / linux (ubuntu-24.04, 3.12, py312-fuse3) (push) Has been cancelled
CI / linux (ubuntu-24.04, 3.13, py313-fuse3) (push) Has been cancelled
CI / linux (ubuntu-24.04, 3.14, py314-fuse3) (push) Has been cancelled
CI / macOS (macos-14, 3.11, py311-none) (push) Has been cancelled
CI / windows (push) Has been cancelled
37 lines
1.1 KiB
YAML
37 lines
1.1 KiB
YAML
name: Backport pull request
|
|
|
|
on:
|
|
pull_request_target:
|
|
types: [closed]
|
|
issue_comment:
|
|
types: [created]
|
|
|
|
permissions:
|
|
contents: write # so it can comment
|
|
pull-requests: write # so it can create pull requests
|
|
|
|
jobs:
|
|
backport:
|
|
name: Backport pull request
|
|
runs-on: ubuntu-24.04
|
|
|
|
# Only run when pull request is merged
|
|
# or when a comment starting with `/backport` is created by someone other than the
|
|
# https://github.com/backport-action bot user (user id: 97796249). Note that if you use your
|
|
# own PAT as `github_token`, that you should replace this id with yours.
|
|
if: >
|
|
(
|
|
github.event_name == 'pull_request_target' &&
|
|
github.event.pull_request.merged
|
|
) || (
|
|
github.event_name == 'issue_comment' &&
|
|
github.event.issue.pull_request &&
|
|
github.event.comment.user.id != 97796249 &&
|
|
startsWith(github.event.comment.body, '/backport')
|
|
)
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Create backport pull requests
|
|
uses: korthout/backport-action@v3
|
|
with:
|
|
label_pattern: '^port/(.+)$'
|