mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-03 02:44:14 +00:00
With new event 'pull_request_target' it is now possible to run the backporting action that we used to have in the past as a Github app. Use labels for backporting as before. See https://github.com/tibdex/backport for more details. Signed-off-by: Anas Nashif <anas.nashif@intel.com>
17 lines
305 B
YAML
17 lines
305 B
YAML
name: Backport
|
|
on:
|
|
pull_request_target:
|
|
types:
|
|
- closed
|
|
- labeled
|
|
|
|
jobs:
|
|
backport:
|
|
runs-on: ubuntu-18.04
|
|
name: Backport
|
|
steps:
|
|
- name: Backport
|
|
uses: zephyrproject-rtos/action-backport@v1.1.99
|
|
with:
|
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|