Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/deploy-grok-spiral.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,4 +61,4 @@ jobs:
env:
CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_API_TOKEN }}
CLOUDFLARE_ACCOUNT_ID: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
run: pnpm --filter grok-spiral deploy
run: pnpm --filter grok-spiral run deploy
2 changes: 1 addition & 1 deletion .github/workflows/deploy-web.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,4 +69,4 @@ jobs:
NEXT_PUBLIC_CESIUM_MARS_ASSET_ID: ${{ secrets.NEXT_PUBLIC_CESIUM_MARS_ASSET_ID }}
GOOGLE_MAPS_NODEJS_API_KEY: ${{ secrets.GOOGLE_MAPS_NODEJS_API_KEY }}
OPENWEATHER_API_KEY: ${{ secrets.OPENWEATHER_API_KEY }}
run: pnpm --filter web deploy
run: pnpm --filter web run deploy
4 changes: 2 additions & 2 deletions scripts/qa-workflow-policy.test.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -364,8 +364,8 @@ describe("GitHub automation supply-chain policy", () => {
assert.match(webScripts.deploy, /pnpm exec wrangler pages deploy/);
assert.match(grokScripts.deploy, /pnpm exec wrangler pages deploy/);
assert.match(apiWorkflow, /pnpm exec wrangler deploy/);
assert.match(webWorkflow, /pnpm --filter web deploy/);
assert.match(grokWorkflow, /pnpm --filter grok-spiral deploy/);
assert.match(webWorkflow, /pnpm --filter web run deploy/);
assert.match(grokWorkflow, /pnpm --filter grok-spiral run deploy/);
});

test("rejects Dependabot groups nested under a sibling policy key", () => {
Expand Down