From 4bbab437ebb9373e42b62019ee3ed51d9f191fbd Mon Sep 17 00:00:00 2001 From: Thomas Stilwell Date: Sun, 27 Oct 2024 14:35:32 +0100 Subject: [PATCH] [nrf noup] ci: enable custom base for `manifest-PR` new arg base-branch defaults to main, but can map zephyr release branch to nrf release base Signed-off-by: Thomas Stilwell --- .github/workflows/manifest-PR.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/manifest-PR.yml b/.github/workflows/manifest-PR.yml index a871aa381de..75094a4b41f 100644 --- a/.github/workflows/manifest-PR.yml +++ b/.github/workflows/manifest-PR.yml @@ -4,6 +4,7 @@ on: types: [opened, synchronize, closed] branches: - main + - v3.7.99-ncs1-branch jobs: @@ -15,3 +16,4 @@ jobs: with: token: ${{ secrets.NCS_GITHUB_TOKEN }} manifest-pr-title-details: ${{ github.event.pull_request.title }} + base-branch: ${{ github.event.pull_request.base.ref == 'v3.7.99-ncs1-branch' && 'v2.8-branch' || 'main' }}