Skip to content

Commit 51346e7

Browse files
ci: allow codex branch prefix (#167)
1 parent c89c224 commit 51346e7

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/integration.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@ jobs:
2525
- name: Check branch name
2626
run: |
2727
branch_name="${{ github.head_ref }}"
28-
if [[ ! $branch_name =~ ^(feature|feat|fix|hotfix|chore|refactor)/.+ ]]; then
28+
if [[ ! $branch_name =~ ^(feature|feat|fix|hotfix|chore|refactor|codex)/.+ ]]; then
2929
echo "❌ Branch name '$branch_name' does not follow the required pattern."
30-
echo "Branch name must start with: feature/, feat/, fix/, hotfix/, chore/, or refactor/"
30+
echo "Branch name must start with: feature/, feat/, fix/, hotfix/, chore/, refactor/, or codex/"
3131
exit 1
3232
fi
3333
echo "✅ Branch name '$branch_name' is valid."
@@ -174,4 +174,4 @@ jobs:
174174
fi
175175
176176
- name: Run Tests
177-
run: poetry run pytest tests/unit/
177+
run: poetry run pytest tests/unit/

0 commit comments

Comments
 (0)