From c548eda3dd59dc8e797b1db52f142a1c86770b4c Mon Sep 17 00:00:00 2001 From: Pastorsimon1798 Date: Sat, 23 May 2026 23:34:15 -0700 Subject: [PATCH] Keep the archaeology workflow runnable from the repo checkout The scheduled/manual report lane cannot depend on a non-published PyPI package, and it must use the repo-mandated Blacksmith runner label. Declare the custom runner to actionlint so the runner contract stays visible to local verification. Constraint: devarch-framework is not published on PyPI and AGENTS.md requires blacksmith-2vcpu-ubuntu-2404 for CI. Rejected: pip install devarch-framework | fails while package is unpublished. Rejected: leave ubuntu-latest | violates repo CI runner contract and CodeRabbit review. Confidence: high Scope-risk: narrow Directive: Keep this workflow installing the checked-out repository unless publishing is added deliberately. Tested: actionlint .github/workflows/archaeology.yml; git diff --check; temporary venv pip install -e . and devarch --help. Not-tested: branch CI after final review-addressing commit, pending GitHub rerun. --- .github/actionlint.yaml | 5 +++++ .github/workflows/archaeology.yml | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) create mode 100644 .github/actionlint.yaml diff --git a/.github/actionlint.yaml b/.github/actionlint.yaml new file mode 100644 index 0000000..5a8ad4d --- /dev/null +++ b/.github/actionlint.yaml @@ -0,0 +1,5 @@ +self-hosted-runner: + labels: + - blacksmith-2vcpu-ubuntu-2404 + +config-variables: null diff --git a/.github/workflows/archaeology.yml b/.github/workflows/archaeology.yml index 0340e8e..bafa4da 100644 --- a/.github/workflows/archaeology.yml +++ b/.github/workflows/archaeology.yml @@ -22,7 +22,7 @@ permissions: jobs: archaeology: - runs-on: ubuntu-latest + runs-on: blacksmith-2vcpu-ubuntu-2404 environment: github-pages steps: @@ -39,7 +39,7 @@ jobs: cache-dependency-path: setup.py - name: Install DevArch - run: pip install devarch-framework + run: pip install -e . - name: Initialize project run: |