Skip to content

test only WIP

test only WIP #1289

Workflow file for this run

name: Backport
on:
pull_request_target:
types:
- closed
- labeled
jobs:
backport:
name: Backport
runs-on: ubuntu-latest
if: >
github.event.pull_request.merged
&& (
github.event.action == 'closed'
|| (
github.event.action == 'labeled'
&& startsWith(github.event.label.name, 'backport-to-')
)
)
steps:
- uses: next-actions/backport@master
with:
user: sssd-bot
token: ${{ secrets.BOT_TOKEN }}