feat: [CI] Gitea Actions runners dead on the-nexus — all workflows completing in 0s (#915)

Refs #915
Agent: groq
This commit is contained in:
Alexander Whitestone
2026-04-06 23:28:06 -04:00
parent 37b006d3c6
commit b0e7b044f0
2 changed files with 9 additions and 1 deletions

View File

@@ -7,7 +7,7 @@ on:
jobs:
validate:
runs-on: ubuntu-latest
runs-on: hermes
steps:
- name: Checkout
uses: actions/checkout@v4
@@ -53,6 +53,13 @@ jobs:
exit $FAIL
- name: "HARD RULE: 10-line net addition limit"
- name: "CI Health Check"
run: |
echo "CI is active ✅"
if [ ! -f /tmp/ci-health ]; then
echo "CI health check failed ❌"
exit 1
fi
run: |
ADDITIONS=$(git diff --numstat origin/main...HEAD | awk '{s+=$1} END {print s+0}')
DELETIONS=$(git diff --numstat origin/main...HEAD | awk '{s+=$2} END {print s+0}')

1
.gitignore vendored
View File

@@ -2,3 +2,4 @@ node_modules/
test-results/
nexus/__pycache__/
tests/__pycache__/
.aider*