Skip to content

Commit b935e9c

Browse files
Remove an extra slash from URL (#33)
* Remove an extra slash * chore: update dist Co-authored-by: jamesgeorge007 <[email protected]>
1 parent c064a19 commit b935e9c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

dist/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1493,7 +1493,7 @@ const COMMIT_MSG = core.getInput("COMMIT_MSG");
14931493

14941494
const capitalize = (str) => str.slice(0, 1).toUpperCase() + str.slice(1);
14951495

1496-
const urlPrefix = "https://github.com/";
1496+
const urlPrefix = "https://github.com";
14971497

14981498
/**
14991499
* Returns a URL in markdown format for PR's and issues

index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ const COMMIT_MSG = core.getInput("COMMIT_MSG");
1818

1919
const capitalize = (str) => str.slice(0, 1).toUpperCase() + str.slice(1);
2020

21-
const urlPrefix = "https://github.com/";
21+
const urlPrefix = "https://github.com";
2222

2323
/**
2424
* Returns a URL in markdown format for PR's and issues

0 commit comments

Comments
 (0)