Skip to content
This repository was archived by the owner on Jul 24, 2026. It is now read-only.

docs: correct stale sylphxltd GitHub links to SylphxAI #417

docs: correct stale sylphxltd GitHub links to SylphxAI

docs: correct stale sylphxltd GitHub links to SylphxAI #417

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
merge_group:
types: [checks_requested]
concurrency:
group: ci-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
jobs:
risk-classification:
name: risk-classification/pass
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 2
- name: ADR-29 risk classification
uses: SylphxAI/.github/.github/actions/adr29-admission@main
with:
mode: classify
policy-mode: observe
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v2
with:
bun-version: latest
- name: Install dependencies
run: bun install --frozen-lockfile
- name: Lint
run: bun run lint
- name: Type check
run: bun run type-check
- name: Test
run: bun test
- name: Build
run: bun run build
trunk-admission:
name: trunk-admission/pass
runs-on: ubuntu-latest
needs:
- risk-classification
- ci
if: ${{ !cancelled() }}
steps:
- name: ADR-29 trunk admission
uses: SylphxAI/.github/.github/actions/adr29-admission@main
with:
mode: fan-in
policy-mode: observe
upstream-results-json: ${{ toJSON(needs) }}
postsubmit-proof:
name: postsubmit-proof/pass
runs-on: ubuntu-latest
needs:
- risk-classification
- ci
- trunk-admission
if: ${{ always() && github.event_name == 'push' && github.ref == 'refs/heads/main' && !cancelled() }}
steps:
- name: ADR-29 postsubmit proof
uses: SylphxAI/.github/.github/actions/adr29-admission@main
with:
mode: postsubmit-proof
policy-mode: enforce
upstream-results-json: ${{ toJSON(needs) }}
recovery-decision:
name: recovery-decision/pass
runs-on: ubuntu-latest
needs:
- risk-classification
- ci
- trunk-admission
- postsubmit-proof
if: ${{ always() && github.event_name == 'push' && github.ref == 'refs/heads/main' && needs.postsubmit-proof.result != 'success' }}
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 2
- name: ADR-29 recovery decision
uses: SylphxAI/.github/.github/actions/adr29-admission@main
with:
mode: recovery-decision
policy-mode: observe
upstream-results-json: ${{ toJSON(needs) }}