Bump robvanderleek/create-issue-branch from 394f2a38fe77a8483511cda4f55b1f432b37d313 to dc1203d98ff20e6cdda2e6e46376f70273659a20 #210
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Backport merged pull request | |
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 pull request | |
runs-on: ubuntu-latest | |
# Don't run on closed unmerged pull requests | |
if: github.event.pull_request.merged | |
steps: | |
- uses: actions/[email protected] | |
- name: Create backport pull requests | |
uses: korthout/backport-action@v3 | |
with: | |
merge_commits: 'skip' |