Skip to content

case(4): add a change #140

case(4): add a change

case(4): add a change #140

name: Backport on pull_request_target[closed]
on:
pull_request_target:
types: [closed]
permissions:
contents: write # so it can comment
pull-requests: write # so it can create pull requests
jobs:
backport:
name: Backport
runs-on: ubuntu-latest
# Only run for case 2 (checked by label)
# Don't run on closed unmerged pull requests
if: >
contains(github.event.pull_request.labels.*.name, 'backport case2-backport-target')
&& github.event.pull_request.merged
steps:
- uses: actions/checkout@v3
- name: Backport
id: backport
uses: korthout/backport-action@main
with:
# copy all labels (backport labels are automatically skipped)
copy_labels_pattern: .+
- name: Print was_successful output
run: echo "${{ steps.backport.outputs.was_successful }}"
- name: Print was_successful_by_target output
run: echo "${{ steps.backport.outputs.was_successful_by_target }}"