diff --git a/.github/workflows/specgit-accept.yml b/.github/workflows/specgit-accept.yml index 63bbebefc..2f4792327 100644 --- a/.github/workflows/specgit-accept.yml +++ b/.github/workflows/specgit-accept.yml @@ -31,9 +31,12 @@ jobs: node-version: '22' # This repo is a bun workspace and does not vendor the SpecGit CLI; - # install the published CLI instead of building from source. + # install the published CLI instead of building from source. Pinned + # with a caret floor (#366): the CLI releases multiple times a day and + # an unpinned install would let an unnoticed upstream change flip CI + # acceptance verdicts repo-wide. - name: Install specgit CLI - run: npm install -g specgit + run: npm install -g specgit@^0.5.0 - name: Wait for sibling checks # The verdict must see the OTHER required checks in a terminal diff --git a/.specgit.yaml b/.specgit.yaml index 04bc1f688..e08ced99b 100644 --- a/.specgit.yaml +++ b/.specgit.yaml @@ -1,8 +1,8 @@ version: 1 -delivery: issue350 +delivery: issue366 context: kind: branch - branch: feat/350-issue350 + branch: feat/366-issue366 issues: - - 350 -pr: 365 + - 366 +pr: 367