From c5ddad6d47d3cbb829ef37a987c5f86bbe143a39 Mon Sep 17 00:00:00 2001 From: Tom Ballard Date: Sat, 25 Jul 2026 17:38:22 +0100 Subject: [PATCH] chore: use final AsDecided repository paths --- README.md | 18 +++++++++--------- gatekeeper/github/action.yml | 2 +- herald/github/action.yml | 2 +- registrar/github/action.yml | 2 +- shared/install-native.sh | 2 +- 5 files changed, 13 insertions(+), 13 deletions(-) diff --git a/README.md b/README.md index ba2969f..9536008 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ -# asdecided-ci +# AsDecided CI -The CI delivery surface for [RAC](https://github.com/itsthelore/asdecided-core) +The CI delivery surface for [RAC](https://github.com/asdecided/core) (requirements-as-code) — one subdir per **capability**, with delivery platforms nested inside (`github/` first). Per ADR-092 (one repo per concern, subdir per member) this consolidates the CI wrappers that previously lived in `asdecided-core` and @@ -16,15 +16,15 @@ not as the engine. | Capability | Subdir | Wraps | Consumed as | | --- | --- | --- | --- | -| Watchkeeper | [`watchkeeper/github/`](watchkeeper/github/) | `decided watchkeeper` (PR knowledge review) | `uses: itsthelore/asdecided-ci/watchkeeper/github@` | -| Gatekeeper | [`gatekeeper/github/`](gatekeeper/github/) | `decided gate --sarif` (required merge gate) | `uses: itsthelore/asdecided-ci/gatekeeper/github@` | -| Registrar | [`registrar/github/`](registrar/github/) | `decided validate --sarif` (well-formedness, ADR-058) | `uses: itsthelore/asdecided-ci/registrar/github@` | -| Herald | [`herald/github/`](herald/github/) | `decided decisions-for --json` (advisory governing-decisions comment on PRs) | `uses: itsthelore/asdecided-ci/herald/github@` | +| Watchkeeper | [`watchkeeper/github/`](watchkeeper/github/) | `decided watchkeeper` (PR knowledge review) | `uses: asdecided/ci/watchkeeper/github@` | +| Gatekeeper | [`gatekeeper/github/`](gatekeeper/github/) | `decided gate --sarif` (required merge gate) | `uses: asdecided/ci/gatekeeper/github@` | +| Registrar | [`registrar/github/`](registrar/github/) | `decided validate --sarif` (well-formedness, ADR-058) | `uses: asdecided/ci/registrar/github@` | +| Herald | [`herald/github/`](herald/github/) | `decided decisions-for --json` (advisory governing-decisions comment on PRs) | `uses: asdecided/ci/herald/github@` | | Recordkeeper | [`recordkeeper/`](recordkeeper/) | read-access audit recorder (ADR-084) | *placeholder — not yet shipped* | A reusable Watchkeeper workflow is also published at [`.github/workflows/watchkeeper.yml`](.github/workflows/watchkeeper.yml) -(`uses: itsthelore/asdecided-ci/.github/workflows/watchkeeper.yml@`). +(`uses: asdecided/ci/.github/workflows/watchkeeper.yml@`). `bitbucket/` and `jenkins/` platform wrappers join under each capability when demanded; the engine is already platform-neutral (SARIF/JSON), so that work is in @@ -34,6 +34,6 @@ the wrappers, not the engine. The `watchkeeper/`, `gatekeeper/`, and `registrar/` wrappers moved here from `asdecided-core` with history preserved (ADR-092 convergence). Consumers pinned to the -old `itsthelore/asdecided-core@`, `…/pr-gate-action@v0`, or `…/validate-action@v0` -paths keep resolving on those tags; new consumers use the `asdecided-ci` paths +old `asdecided/core@`, `…/pr-gate-action@v0`, or `…/validate-action@v0` +paths keep resolving on those tags; new consumers use the `asdecided/ci` paths above. diff --git a/gatekeeper/github/action.yml b/gatekeeper/github/action.yml index 7f57c15..ec24cc8 100644 --- a/gatekeeper/github/action.yml +++ b/gatekeeper/github/action.yml @@ -11,7 +11,7 @@ # # The Watchkeeper action lives at `watchkeeper/github/` and the validate # (Registrar) action at `registrar/github/`; this gate is referenced as -# `uses: itsthelore/asdecided-ci/gatekeeper/github@`. +# `uses: asdecided/ci/gatekeeper/github@`. name: "RAC PR gate" description: >- Enforce a requirements-as-code (RAC) corpus on a pull request with a single diff --git a/herald/github/action.yml b/herald/github/action.yml index 04bdfe6..4520ae0 100644 --- a/herald/github/action.yml +++ b/herald/github/action.yml @@ -15,7 +15,7 @@ # # Siblings: Watchkeeper at `watchkeeper/github/`, the gate at # `gatekeeper/github/`, validate at `registrar/github/`. This surface is -# referenced as `uses: itsthelore/asdecided-ci/herald/github@`. +# referenced as `uses: asdecided/ci/herald/github@`. # # Requirements: a pull_request-triggered workflow, `fetch-depth: 0` on the # checkout (the diff needs the merge base, like Watchkeeper), and diff --git a/registrar/github/action.yml b/registrar/github/action.yml index 78958a2..953a4e1 100644 --- a/registrar/github/action.yml +++ b/registrar/github/action.yml @@ -5,7 +5,7 @@ # severity policy live in the package (ADR-015 / ADR-053); the action never # reinterprets findings. The Watchkeeper action lives at `watchkeeper/github/`; # this Registrar (validate) action is referenced as -# `uses: itsthelore/asdecided-ci/registrar/github@`. +# `uses: asdecided/ci/registrar/github@`. name: "RAC Registrar" description: >- Validate a requirements-as-code (RAC) corpus and surface findings on the pull diff --git a/shared/install-native.sh b/shared/install-native.sh index 2abb4c7..80db235 100644 --- a/shared/install-native.sh +++ b/shared/install-native.sh @@ -32,7 +32,7 @@ esac install_dir="${RUNNER_TEMP}/asdecided-${version}" download="${RUNNER_TEMP}/${archive}" -url="https://github.com/itsthelore/asdecided-core/releases/download/v${version}/${archive}" +url="https://github.com/asdecided/core/releases/download/v${version}/${archive}" mkdir -p "$install_dir" curl --fail --location --retry 3 --silent --show-error "$url" --output "$download"