From fc2a72a3ed709dca74c8c4b4e2232c0204131fe7 Mon Sep 17 00:00:00 2001
From: elchananarb <elchanan.arbiv@checkmarx.com>
Date: Sun, 16 Feb 2025 09:56:01 +0200
Subject: [PATCH] update GitHub token help description to match documentation
 (AST-79915)

---
 internal/params/flags.go | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/internal/params/flags.go b/internal/params/flags.go
index f9c9f3cdc..d3413d312 100644
--- a/internal/params/flags.go
+++ b/internal/params/flags.go
@@ -121,7 +121,7 @@ const (
 	CweIDFlag                    = "cwe-id"
 	SCMTokenFlag                 = "token"
 	AzureTokenUsage              = "Azure DevOps personal access token. Requires “Connected server” and “Code“ scope."
-	GithubTokenUsage             = "GitHub OAuth token. Requires “Repo” scope and organization SSO authorization, if enforced by the organization"
+	GithubTokenUsage             = "GitHub Personal Access Token (PAT). Requires “Repo” scope and organization SSO authorization, if enforced by the organization"
 	GitLabTokenUsage             = "GitLab OAuth token"
 	BitbucketTokenUsage          = "Bitbucket OAuth token"
 	BotCount                     = "Note: dependabot is not counted but other bots might be considered as contributors."
@@ -285,12 +285,12 @@ var (
 )
 
 // Custom states
-const  IncludeDeletedQueryParam = "include-deleted"
-const True 						= "true"
+const IncludeDeletedQueryParam = "include-deleted"
+const True = "true"
 
 // System States
-const ToVerify               = "TO_VERIFY"
-const NotExploitable          = "NOT_EXPLOITABLE"
+const ToVerify = "TO_VERIFY"
+const NotExploitable = "NOT_EXPLOITABLE"
 const ProposedNotExploitable = "PROPOSED_NOT_EXPLOITABLE"
-const CONFIRMED               = "CONFIRMED"
-const URGENT                  = "URGENT"
\ No newline at end of file
+const CONFIRMED = "CONFIRMED"
+const URGENT = "URGENT"