From 33150f3190c9e055fbc3342713fc16578a19fa25 Mon Sep 17 00:00:00 2001 From: Franco Date: Fri, 1 Mar 2024 16:13:08 +0100 Subject: [PATCH] Create branch-protection.yml --- .github/workflows/branch-protection.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .github/workflows/branch-protection.yml diff --git a/.github/workflows/branch-protection.yml b/.github/workflows/branch-protection.yml new file mode 100644 index 0000000..b82cfb6 --- /dev/null +++ b/.github/workflows/branch-protection.yml @@ -0,0 +1,11 @@ +name: "Branch protection" +on: + pull_request: + types: [opened, edited, reopened, synchronize] + +jobs: + test_job: + runs-on: ubuntu-latest + name: Branch naming protection check. + steps: + - uses: knawat/github-actions-gitflow@v1