Skip to content

Commit

Permalink
fix regexp
Browse files Browse the repository at this point in the history
  • Loading branch information
reiji-h committed May 24, 2024
1 parent 25e8c59 commit 290db94
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ const githubReposIdPattern = new RegExp(/^\/([^/]+)\/([^/]+)$/);
// https://regex101.com/r/CQjSuz/1
const sanitizeBranchChars = new RegExp(/[^a-zA-Z0-9_.]+/g);
// https://regex101.com/r/5n58Bg/1
const checkVersionTag = new RegExp(/v[\d]/g);
const checkVersionTag = new RegExp(/^v[\d]/g);
export class GitHubUrl {

private _organizationName: string;
Expand Down

0 comments on commit 290db94

Please sign in to comment.