feat: disable all workflows except python-tests for focused development
Some checks failed
audit / audit (push) Has been skipped
ci-cd / build (push) Has been skipped
ci / build (push) Has been skipped
AITBC CLI Level 1 Commands Test / test-cli-level1 (18) (push) Has been skipped
AITBC CLI Level 1 Commands Test / test-cli-level1 (20) (push) Has been skipped
autofix / fix (push) Has been skipped
python-tests / test (push) Failing after 8s
python-tests / test-specific (push) Has been skipped
security-scanning / audit (push) Has been skipped
test / test (push) Has been skipped
ci-cd / deploy (push) Has been skipped
ci / deploy (push) Has been skipped
Some checks failed
audit / audit (push) Has been skipped
ci-cd / build (push) Has been skipped
ci / build (push) Has been skipped
AITBC CLI Level 1 Commands Test / test-cli-level1 (18) (push) Has been skipped
AITBC CLI Level 1 Commands Test / test-cli-level1 (20) (push) Has been skipped
autofix / fix (push) Has been skipped
python-tests / test (push) Failing after 8s
python-tests / test-specific (push) Has been skipped
security-scanning / audit (push) Has been skipped
test / test (push) Has been skipped
ci-cd / deploy (push) Has been skipped
ci / deploy (push) Has been skipped
WORKFLOW FOCUS: Disable all workflows to focus on python-tests development Disabled workflows with 'if: false': - audit.yml: Simple audit workflow - ci.yml: Main CI pipeline - ci-cd.yml: Complete CI/CD pipeline - fix.yml: Code quality fixes - security-scanning.yml: Security scanning - cli-level1-tests.yml: CLI-specific testing - test.yml: Basic testing - debug-test.yml: Debug workflow Active workflow: - python-tests.yml: Comprehensive Python testing (NEW) Benefits: - Clean development environment - No competing workflow runs - Focus on python-tests workflow development - Easy to re-enable when needed - Reduced runner load This allows focused development of the python-tests workflow without interference from other workflows. All disabled workflows can be easily re-enabled by removing 'if: false'.
This commit is contained in:
@@ -7,6 +7,7 @@ on:
|
||||
jobs:
|
||||
audit:
|
||||
runs-on: debian
|
||||
if: false
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
@@ -8,6 +8,7 @@ on:
|
||||
jobs:
|
||||
build:
|
||||
runs-on: debian
|
||||
if: false
|
||||
|
||||
steps:
|
||||
- name: Nuclear fix - absolute path control
|
||||
|
||||
@@ -7,6 +7,7 @@ on:
|
||||
jobs:
|
||||
build:
|
||||
runs-on: debian
|
||||
if: false
|
||||
|
||||
steps:
|
||||
- name: Nuclear fix - absolute path control
|
||||
|
||||
@@ -17,7 +17,8 @@ on:
|
||||
|
||||
jobs:
|
||||
test-cli-level1:
|
||||
runs-on: debian
|
||||
runs-on: debian
|
||||
if: false
|
||||
|
||||
strategy:
|
||||
matrix:
|
||||
|
||||
@@ -6,6 +6,7 @@ on:
|
||||
jobs:
|
||||
debug:
|
||||
runs-on: debian
|
||||
if: false
|
||||
|
||||
steps:
|
||||
- name: Ultimate debug - show everything
|
||||
|
||||
@@ -7,6 +7,7 @@ on:
|
||||
jobs:
|
||||
fix:
|
||||
runs-on: debian
|
||||
if: false
|
||||
|
||||
steps:
|
||||
- name: Nuclear fix - absolute path control
|
||||
|
||||
@@ -7,6 +7,7 @@ on:
|
||||
jobs:
|
||||
audit:
|
||||
runs-on: debian
|
||||
if: false
|
||||
|
||||
steps:
|
||||
- name: Nuclear fix - absolute path control
|
||||
|
||||
@@ -7,6 +7,7 @@ on:
|
||||
jobs:
|
||||
test:
|
||||
runs-on: debian
|
||||
if: false
|
||||
|
||||
steps:
|
||||
- name: Nuclear fix - absolute path control
|
||||
|
||||
Reference in New Issue
Block a user