From 8addbb3997d59a07f1e14ea8fc6dd31af2d035f2 Mon Sep 17 00:00:00 2001 From: Robert Ing Date: Thu, 23 Oct 2025 16:36:38 -0400 Subject: [PATCH] ci: Update target branch to be main and not development --- .github/workflows/pr-branch-target-gitflow.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pr-branch-target-gitflow.yml b/.github/workflows/pr-branch-target-gitflow.yml index 5fe03cc..1c49e1d 100644 --- a/.github/workflows/pr-branch-target-gitflow.yml +++ b/.github/workflows/pr-branch-target-gitflow.yml @@ -3,7 +3,7 @@ on: workflow_call: jobs: pr-branch-confirmation: - name: "Confirm that target branch for PR is development or build/" + name: "Confirm that target branch for PR is main or build/" runs-on: ubuntu-latest steps: - name: "echo PR target branch" @@ -12,7 +12,7 @@ jobs: - name: "Set PR target branch validity" id: is-valid if: > - startsWith(github.event.pull_request.base.ref, 'development')|| + startsWith(github.event.pull_request.base.ref, 'main')|| startsWith(github.event.pull_request.base.ref, 'chore/dependabot') || startsWith(github.event.pull_request.base.ref, 'build/') run: |