chore: Remove redundant fast-validation.yml workflow
Merge to Main - Full Pipeline / Stage 4: Build and Package (push) Has been skipped
Merge to Main - Full Pipeline / Stage 5: Trigger Deploy Pipeline (push) Has been skipped
Merge to Main - Full Pipeline / Stage 1: Fast Gates (push) Failing after 5s
Merge to Main - Full Pipeline / Stage 2: Critical Gates (push) Has been skipped
Merge to Main - Full Pipeline / Stage 3: Integration Tests (push) Has been skipped
Merge to Main - Full Pipeline / Pipeline Summary (push) Successful in 1s
Deploy to Production / Deploy (push) Failing after 27s

This commit is contained in:
2026-07-11 22:06:58 +09:00
parent 35c00b68f7
commit 6a6770f996
-41
View File
@@ -1,41 +0,0 @@
name: Fast Validation
on:
pull_request:
branches: [ main ]
workflow_dispatch:
jobs:
quick-checks:
runs-on: ubuntu-latest
timeout-minutes: 2
steps:
- name: Checkout Code
uses: actions/checkout@v3
- name: YAML Lint
run: |
python3 -m pip install -q yamllint
yamllint -c "{extends: default}" .gitea/workflows/*.yml || true
- name: No Hardcoded Secrets
run: |
! grep -r "Password=" .gitea/workflows/ --include="*.yml" | grep -v "secrets\." || exit 1
- name: JSON Validation
run: |
python3 -c "
import json, glob
for f in glob.glob('**/*.json', recursive=True):
try:
with open(f) as file:
json.load(file)
except Exception as e:
print(f'ERROR: {f}: {e}')
exit(1)
"
- name: Report Complete
if: success()
run: echo "Fast validation passed"