diff --git a/.github/workflows/enforce-branch-name-rules.yml b/.github/workflows/enforce-branch-name-rules.yml index 84da9813c3..96aae5cbad 100644 --- a/.github/workflows/enforce-branch-name-rules.yml +++ b/.github/workflows/enforce-branch-name-rules.yml @@ -17,6 +17,9 @@ jobs: "${{ github.head_ref }}" != release/* && \ "${{ github.head_ref }}" != dependabot/* && \ "${{ github.head_ref }}" != latest && \ + "${{ github.head_ref }}" != fe && \ + "${{ github.head_ref }}" != be && \ + "${{ github.head_ref }}" != e2e && \ "${{ github.head_ref }}" != ric/* ]]; then echo "❌ Pull requests to 'main' are only allowed from 'feature/**', 'bugfix/**', 'release/**', 'dependabot/**', 'latest' or 'ric/**' branches." exit 1