c5e50ef0e2
The workflow was pointing to `master` instead of `main`, which prevented it from running after the branch was renamed. Signed-off-by: Carles Cufi <carles.cufi@nordicsemi.no>
20 lines
369 B
YAML
20 lines
369 B
YAML
name: Backport
|
|
on:
|
|
pull_request_target:
|
|
types:
|
|
- closed
|
|
- labeled
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
backport:
|
|
runs-on: ubuntu-18.04
|
|
name: Backport
|
|
steps:
|
|
- name: Backport
|
|
uses: zephyrproject-rtos/action-backport@v1.1.1-1
|
|
with:
|
|
github_token: ${{ secrets.ZB_GITHUB_TOKEN }}
|
|
issue_labels: backport
|