From 070f240d6c73483b5abd21c2e773d0fc14136875 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 30 Jan 2026 12:24:13 +0000 Subject: [PATCH 1/3] Initial plan From 50e8ea5e3ab68177d8320a25bdb02f41fe244e87 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 30 Jan 2026 12:30:39 +0000 Subject: [PATCH 2/3] Add GH_AW_AGENT_TOKEN to campaign getting started docs Co-authored-by: mnkiefer <8320933+mnkiefer@users.noreply.github.com> --- .../docs/guides/campaigns/getting-started.mdx | 20 ++++++++++++------- 1 file changed, 13 insertions(+), 7 deletions(-) diff --git a/docs/src/content/docs/guides/campaigns/getting-started.mdx b/docs/src/content/docs/guides/campaigns/getting-started.mdx index a4b926b4ddb..46cf717b23f 100644 --- a/docs/src/content/docs/guides/campaigns/getting-started.mdx +++ b/docs/src/content/docs/guides/campaigns/getting-started.mdx @@ -41,13 +41,19 @@ imports: Your campaign instructions here... ``` -2. **Set up authentication** for project access: - -```bash -gh aw secrets set GH_AW_PROJECT_GITHUB_TOKEN --value "YOUR_PROJECT_TOKEN" -``` - -See [GitHub Projects V2 Tokens](/gh-aw/reference/tokens/#gh_aw_project_github_token-github-projects-v2) for token setup. +2. **Set up authentication**: + + - For project access: + ```bash + gh aw secrets set GH_AW_PROJECT_GITHUB_TOKEN --value "YOUR_PROJECT_TOKEN" + ``` + See [GitHub Projects V2 Tokens](/gh-aw/reference/tokens/#gh_aw_project_github_token-github-projects-v2) for token setup. + + - For assigning agents to issues (if your campaign uses `assignees: copilot` or `assign-to-agent` safe outputs): + ```bash + gh aw secrets set GH_AW_AGENT_TOKEN --value "YOUR_AGENT_TOKEN" + ``` + See [Agent Assignment Tokens](/gh-aw/reference/tokens/#gh_aw_agent_token-agent-assignment) for token setup. 3. **Compile and deploy**: From 7b6f23bc742b578fc0c841042694bbfa84cc956e Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 30 Jan 2026 14:06:39 +0000 Subject: [PATCH 3/3] Clarify GH_AW_AGENT_TOKEN is for assigning work to Copilot Co-authored-by: mnkiefer <8320933+mnkiefer@users.noreply.github.com> --- docs/src/content/docs/guides/campaigns/getting-started.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/content/docs/guides/campaigns/getting-started.mdx b/docs/src/content/docs/guides/campaigns/getting-started.mdx index 46cf717b23f..6a456264592 100644 --- a/docs/src/content/docs/guides/campaigns/getting-started.mdx +++ b/docs/src/content/docs/guides/campaigns/getting-started.mdx @@ -49,7 +49,7 @@ Your campaign instructions here... ``` See [GitHub Projects V2 Tokens](/gh-aw/reference/tokens/#gh_aw_project_github_token-github-projects-v2) for token setup. - - For assigning agents to issues (if your campaign uses `assignees: copilot` or `assign-to-agent` safe outputs): + - For assigning work to Copilot (if your campaign uses `assignees: copilot` or `assign-to-agent` safe outputs): ```bash gh aw secrets set GH_AW_AGENT_TOKEN --value "YOUR_AGENT_TOKEN" ```