Skip to content

Commit ec75c6c

Browse files
sidmohan0claude
andcommitted
fix: rename CI jobs to match expected GitHub checks
- Rename 'pre-commit' job to 'lint' to provide required lint check - Rename 'test' job to 'build' to provide required build (3.10, 3.11, 3.12) checks - Add 'cleanup/*' branch pattern to workflow triggers - Maintain streamlined workflow architecture while satisfying GitHub requirements This resolves the "Expected — Waiting for status to be reported" issue that was preventing PR merges due to missing required check names. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 2707dec commit ec75c6c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@ name: CI
22

33
on:
44
push:
5-
branches: [main, dev, "feature/*", "fix/*", "chore/*"]
5+
branches: [main, dev, "feature/*", "fix/*", "chore/*", "cleanup/*"]
66
pull_request:
77
branches: [main, dev]
88

99
jobs:
10-
pre-commit:
10+
lint:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- uses: actions/checkout@v4
@@ -20,7 +20,7 @@ jobs:
2020
- name: Run pre-commit
2121
run: pre-commit run --all-files --show-diff-on-failure
2222

23-
test:
23+
build:
2424
runs-on: ubuntu-latest
2525
strategy:
2626
matrix:

0 commit comments

Comments
 (0)