Skip to content

Commit 8468a93

Browse files
karhamanordicjm
authored andcommitted
[nrf noup] workflows: Add manifest PRs creation
Adding action to create manifest PRs automatically. Signed-off-by: Kari Hamalainen <[email protected]> (cherry picked from commit 37486f5)
1 parent 4b34ac8 commit 8468a93

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.github/workflows/manifest-PR.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: handle manifest PR
2+
on:
3+
pull_request_target:
4+
types: [opened, synchronize, closed]
5+
branches:
6+
- ncs-v3.1-branch
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 }}
18+
base-branch: v3.1-branch

0 commit comments

Comments
 (0)