Curated, product-agnostic snapshot of the post-story-04 tree: demo content deleted, auth-only reference feature, web-next shell, all gates green. Product-specific docs, ADRs 027-029, PRDs/epics/archive, editor library traces, and product naming are curated out; generic template repairs (coverage provider devDeps, root test:coverage script, live lint fixes, root-only release-please) are kept. See TEMPLATE.md for provenance, curation list, and usage. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_016j8z4VHjedXDTjEDNg7qHK
39 lines
1.1 KiB
YAML
39 lines
1.1 KiB
YAML
# Library trace revalidation — weekly run + on-demand. ADR-022.
|
|
#
|
|
# Walks every approved + pre-shipped trace in docs/library-decisions/,
|
|
# re-runs each trace's verification-commands, classifies divergence as
|
|
# soft (minor drift → rolling dashboard issue) or hard (re-evaluation
|
|
# warranted → per-dep issue), and opens/updates/closes GitHub issues
|
|
# accordingly. Runs in parallel to main — does NOT gate deployments.
|
|
|
|
name: Library trace revalidation (weekly)
|
|
|
|
on:
|
|
schedule:
|
|
# 06:30 UTC every Monday
|
|
- cron: "30 6 * * 1"
|
|
workflow_dispatch:
|
|
|
|
permissions:
|
|
contents: read
|
|
issues: write
|
|
|
|
jobs:
|
|
revalidate:
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 30
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: pnpm/action-setup@v4
|
|
with:
|
|
version: 9
|
|
- uses: actions/setup-node@v4
|
|
with:
|
|
node-version: 22
|
|
cache: pnpm
|
|
- run: pnpm install --frozen-lockfile
|
|
- name: Revalidate library traces
|
|
env:
|
|
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
run: node scripts/library-decisions/revalidate.mjs
|