Skip to content

Commit ebeb372

Browse files
authored
Merge pull request #1352 from github/copilot/fix-1252
Update integrate-boards command help text to clarify ADO PAT 'All organizations' requirement
2 parents 17c8934 + 46b95d9 commit ebeb372

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

RELEASENOTES.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
1+
- Updated `ado2gh integrate-boards` command help text to clarify that the ADO PAT token must have 'All organizations' access selected.
12
- If `create-team` fails with 5xx errors, it will now retry the API call.
23
- Fixed `gh gei migrate-secret-alerts` command to handle long resolution comments by truncating them to fit within GitHub's 270 character limit while preserving the resolver name prefix.

src/ado2gh/Commands/IntegrateBoards/IntegrateBoardsCommand.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,9 @@ public IntegrateBoardsCommand() : base(
1313
name: "integrate-boards",
1414
description: "Configures the Azure Boards<->GitHub integration in Azure DevOps." +
1515
Environment.NewLine +
16-
"Note: Expects ADO_PAT and GH_PAT env variables or --ado-pat and --github-pat options to be set.")
16+
"Note: Expects ADO_PAT and GH_PAT env variables or --ado-pat and --github-pat options to be set." +
17+
Environment.NewLine +
18+
"The ADO_PAT token must have 'All organizations' access selected.")
1719
{
1820
AddOption(AdoOrg);
1921
AddOption(AdoTeamProject);

0 commit comments

Comments
 (0)