Skip to content

Commit 347adfc

Browse files
rugeGerritsenjukkar
authored andcommitted
[nrf noup] ci: Enable action-manifest-pr
This action will automatically manage a PR to sdk-nrf once a PR to sdk-zephyr is created. This includes: - Creating an initial PR - Updating and (optionally) rebase it once the PR to sdk-nrf is merged. The action can be disabled by adding the string "manifest-pr-skip" to the title or body of the PR. This will simplify cherry-picking changes from upstream zephyr. Signed-off-by: Rubin Gerritsen <[email protected]> (cherry picked from commit 7cf6f4f)
1 parent 52d5add commit 347adfc

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.github/workflows/manifest-PR.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: handle manifest PR
2+
on:
3+
pull_request_target:
4+
types: [opened, synchronize, closed]
5+
branches:
6+
- main
7+
8+
9+
jobs:
10+
call-manifest-pr-action:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- name: handle manifest PR
14+
uses: nrfconnect/action-manifest-pr@main
15+
with:
16+
token: ${{ secrets.NCS_GITHUB_TOKEN }}
17+
manifest-pr-title-details: ${{ github.event.pull_request.title }}

0 commit comments

Comments
 (0)