aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/backport.yml
blob: 321cd02b0c1d385affeddd4d7579b9b7e43c84b1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
name: Backport
on:
  pull_request_target:
    types: [closed, labeled]
jobs:
  backport:
    permissions:
      contents: write
      pull-requests: write
    name: Backport Pull Request
    if: github.event.pull_request.merged
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4
      - name: Create backport PRs
        uses: korthout/backport-action@v2