Skip to content

Commit

Permalink
Update CircleCI regex. (#481)
Browse files Browse the repository at this point in the history
  • Loading branch information
kporras07 committed Aug 23, 2023
1 parent 432c36b commit 5e6368c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ public function credentialRequests()
self::CIRCLE_TOKEN,
"Please generate a Circle CI personal API token by visiting the page:\n\n https://circleci.com/account/api\n\n For more information, see:\n\n https://circleci.com/docs/api/v1-reference/#getting-started.",
"Enter Circle CI personal API token: ",
'#^[0-9a-fA-F]{40}$#',
'#^[0-9a-zA-Z_]{70}$#',
'Circle CI authentication tokens should be 40-character strings containing only the letters a-f and digits (0-9). Please enter your token again.'

This comment has been minimized.

Copy link
@matbrady

matbrady Dec 12, 2023

The regex was updated but the error messaging was not changed to 70-characters.

);

Expand Down

0 comments on commit 5e6368c

Please sign in to comment.