From ce3f07dbdcd46cf21286d4bcd4d5eea866decd61 Mon Sep 17 00:00:00 2001 From: Boromir Date: Fri, 8 May 2026 07:54:52 -0700 Subject: [PATCH 1/2] fix(ci): use GH_PROJECT_TOKEN for Projects V2 GraphQL access in squad-mark-released GITHUB_TOKEN cannot access GitHub Projects V2 via GraphQL mutations. Switch to GH_PROJECT_TOKEN (PAT with project scope) which is already used by other project-board workflows in this repo. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- .github/workflows/squad-mark-released.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/squad-mark-released.yml b/.github/workflows/squad-mark-released.yml index 845da55d..997b4510 100644 --- a/.github/workflows/squad-mark-released.yml +++ b/.github/workflows/squad-mark-released.yml @@ -24,7 +24,7 @@ jobs: - name: Move Done → Released on project board uses: actions/github-script@v9 with: - github-token: ${{ secrets.GITHUB_TOKEN }} + github-token: ${{ secrets.GH_PROJECT_TOKEN }} script: | const PROJECT_ID = process.env.PROJECT_ID; const STATUS_FIELD_ID = process.env.STATUS_FIELD_ID; From d28ba7d4f0bd8d3a76b3e03c1714e080e96f1486 Mon Sep 17 00:00:00 2001 From: Boromir Date: Fri, 8 May 2026 08:03:41 -0700 Subject: [PATCH 2/2] fix(vscode): add missing words to cSpell configuration --- .vscode/settings.json | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.vscode/settings.json b/.vscode/settings.json index 70d34f9c..e65f2809 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,7 +1,9 @@ { "cSpell.words": [ "ASPNETCORE", + "cref", "EECOM", + "inheritdoc", "msbuild", "rendermode", "reskill",