From f8dd4dcd7aef048116b102339d9c2f7380fb6d9a Mon Sep 17 00:00:00 2001 From: marcellodebernardi Date: Wed, 25 Feb 2026 13:36:15 +0000 Subject: [PATCH 1/2] ci: allow codex branch prefix --- .github/workflows/integration.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index 24854fc3..2e4a5eb6 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -25,9 +25,9 @@ jobs: - name: Check branch name run: | branch_name="${{ github.head_ref }}" - if [[ ! $branch_name =~ ^(feature|feat|fix|hotfix|chore|refactor)/.+ ]]; then + if [[ ! $branch_name =~ ^(feature|feat|fix|hotfix|chore|refactor|codex)/.+ ]]; then echo "❌ Branch name '$branch_name' does not follow the required pattern." - echo "Branch name must start with: feature/, feat/, fix/, hotfix/, chore/, or refactor/" + echo "Branch name must start with: feature/, feat/, fix/, hotfix/, chore/, refactor/, or codex/" exit 1 fi echo "✅ Branch name '$branch_name' is valid." @@ -174,4 +174,4 @@ jobs: fi - name: Run Tests - run: poetry run pytest tests/unit/ \ No newline at end of file + run: poetry run pytest tests/unit/ From f648e190d04ac0c74094df8b6bdfe651a641416d Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 25 Feb 2026 13:47:53 +0000 Subject: [PATCH 2/2] Initial plan