From 09420b7111810ba32ac4daf887dea2077c3cff64 Mon Sep 17 00:00:00 2001 From: Maarten de Kruijf <16100232+MaartendeKruijf@users.noreply.github.com> Date: Thu, 19 Dec 2024 10:10:26 +0100 Subject: [PATCH] Added dependabot to branch naming check (#66) --- .github/workflows/branch.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/branch.yml b/.github/workflows/branch.yml index c903962..3740fce 100644 --- a/.github/workflows/branch.yml +++ b/.github/workflows/branch.yml @@ -17,4 +17,4 @@ jobs: steps: - name: Check for branch name run: - if [[ $BRANCH_NAME =~ (feature|bugfix|hotfix|development|release|master)\/* ]]; then exit 0; else exit 1; fi \ No newline at end of file + if [[ $BRANCH_NAME =~ (feature|bugfix|hotfix|development|dependabot|release|master)\/* ]]; then exit 0; else exit 1; fi \ No newline at end of file