From 7f21765ecfd26bf617976ecd62187de95ebe1adc Mon Sep 17 00:00:00 2001 From: Kari Hamalainen Date: Fri, 8 Aug 2025 09:32:03 +0300 Subject: [PATCH] [nrf noup] workflows: Add manifest PRs creation Adding action to create manifest PRs automatically. Signed-off-by: Kari Hamalainen --- .github/workflows/manifest-PR.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/manifest-PR.yml diff --git a/.github/workflows/manifest-PR.yml b/.github/workflows/manifest-PR.yml new file mode 100644 index 000000000..a871aa381 --- /dev/null +++ b/.github/workflows/manifest-PR.yml @@ -0,0 +1,17 @@ +name: handle manifest PR +on: + pull_request_target: + types: [opened, synchronize, closed] + branches: + - main + + +jobs: + call-manifest-pr-action: + runs-on: ubuntu-latest + steps: + - name: handle manifest PR + uses: nrfconnect/action-manifest-pr@main + with: + token: ${{ secrets.NCS_GITHUB_TOKEN }} + manifest-pr-title-details: ${{ github.event.pull_request.title }}