Skip to content

Commit 28b6c9b

Browse files
Point probe at org-scoped copilot-canary-test feed
The old copilot-canary-spike feed was project-scoped to DevDiv and id-cpd-ci is not a DevDiv project member (VS800075). Publish to the new org-scoped copilot-canary-test feed instead; org-scoped registry URLs drop the /DevDiv project segment. Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com>
1 parent ac2f86d commit 28b6c9b

1 file changed

Lines changed: 12 additions & 12 deletions

File tree

.github/workflows/canary-feed-oidc-probe.yml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: canary-feed-oidc-probe
22

33
# THROWAWAY Phase 0 probe. Validates that id-cpd-ci (via the OIDC federated
44
# credential on environment:cicd) can mint an Azure DevOps token and publish to
5-
# the internal copilot-canary-spike npm feed. Delete once Phase 0 is proven.
5+
# the internal copilot-canary-test npm feed. Delete once Phase 0 is proven.
66

77
on:
88
push:
@@ -45,15 +45,15 @@ jobs:
4545
WORK="$(mktemp -d)"; cd "$WORK"
4646
VERSION="0.0.0-ci.${{ github.run_number }}"
4747
cat > package.json <<JSON
48-
{ "name": "@copilot-canary-spike/ci-probe", "version": "${VERSION}", "description": "OIDC CI round-trip probe" }
48+
{ "name": "@copilot-canary-test/ci-probe", "version": "${VERSION}", "description": "OIDC CI round-trip probe" }
4949
JSON
5050
cat > .npmrc <<EOF
51-
registry=https://pkgs.dev.azure.com/devdiv/DevDiv/_packaging/copilot-canary-spike/npm/registry/
52-
//pkgs.dev.azure.com/devdiv/DevDiv/_packaging/copilot-canary-spike/npm/registry/:_authToken=${FEED_TOKEN}
53-
//pkgs.dev.azure.com/devdiv/DevDiv/_packaging/copilot-canary-spike/npm/:_authToken=${FEED_TOKEN}
51+
registry=https://pkgs.dev.azure.com/devdiv/_packaging/copilot-canary-test/npm/registry/
52+
//pkgs.dev.azure.com/devdiv/_packaging/copilot-canary-test/npm/registry/:_authToken=${FEED_TOKEN}
53+
//pkgs.dev.azure.com/devdiv/_packaging/copilot-canary-test/npm/:_authToken=${FEED_TOKEN}
5454
EOF
5555
npm publish
56-
echo "Published @copilot-canary-spike/ci-probe@${VERSION}"
56+
echo "Published @copilot-canary-test/ci-probe@${VERSION}"
5757
5858
- name: Read back (fresh install)
5959
env:
@@ -63,10 +63,10 @@ jobs:
6363
WORK="$(mktemp -d)"; cd "$WORK"
6464
VERSION="0.0.0-ci.${{ github.run_number }}"
6565
cat > .npmrc <<EOF
66-
registry=https://pkgs.dev.azure.com/devdiv/DevDiv/_packaging/copilot-canary-spike/npm/registry/
67-
//pkgs.dev.azure.com/devdiv/DevDiv/_packaging/copilot-canary-spike/npm/registry/:_authToken=${FEED_TOKEN}
68-
//pkgs.dev.azure.com/devdiv/DevDiv/_packaging/copilot-canary-spike/npm/:_authToken=${FEED_TOKEN}
66+
registry=https://pkgs.dev.azure.com/devdiv/_packaging/copilot-canary-test/npm/registry/
67+
//pkgs.dev.azure.com/devdiv/_packaging/copilot-canary-test/npm/registry/:_authToken=${FEED_TOKEN}
68+
//pkgs.dev.azure.com/devdiv/_packaging/copilot-canary-test/npm/:_authToken=${FEED_TOKEN}
6969
EOF
70-
npm view "@copilot-canary-spike/ci-probe@${VERSION}" version
71-
npm install "@copilot-canary-spike/ci-probe@${VERSION}" --no-save
72-
test -f node_modules/@copilot-canary-spike/ci-probe/package.json && echo "READBACK OK"
70+
npm view "@copilot-canary-test/ci-probe@${VERSION}" version
71+
npm install "@copilot-canary-test/ci-probe@${VERSION}" --no-save
72+
test -f node_modules/@copilot-canary-test/ci-probe/package.json && echo "READBACK OK"

0 commit comments

Comments
 (0)