From 901bb4edc5131477a47f018196d97cfa560a2669 Mon Sep 17 00:00:00 2001 From: Kari Hamalainen <91663826+karhama@users.noreply.github.com> Date: Fri, 5 Apr 2024 15:50:06 +0300 Subject: [PATCH] ci: use refactored action in manifest-PR.yml nordicbuilder workflow was refactored to action. It was also moved to nrfconnect org. Signed-off-by: Kari Hamalainen --- .github/workflows/manifest-PR.yml | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/.github/workflows/manifest-PR.yml b/.github/workflows/manifest-PR.yml index 511e6a7974..37a7baa63c 100644 --- a/.github/workflows/manifest-PR.yml +++ b/.github/workflows/manifest-PR.yml @@ -1,4 +1,4 @@ -name: Automatically create manifest PR +name: handle manifest PR on: pull_request_target: types: [opened, synchronize, closed] @@ -7,7 +7,10 @@ on: jobs: - call_workflow: - uses: nordicbuilder/action-manifest-pr/.github/workflows/auto-manifest-pr.yml@main - secrets: - NB_TOKEN: ${{ secrets.NCS_GITHUB_TOKEN }} + 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 }}