Skip to content

Commit aeb30aa

Browse files
BREAKING CHANGE: trim trailing newline from the PR value (#5)
1 parent c99b191 commit aeb30aa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ try {
1010
if (err) {
1111
throw err;
1212
}
13-
const url = prNumber && `https://github.com/${ GITHUB_REPOSITORY }/pull/${ prNumber }`;
13+
const url = prNumber && `https://github.com/${ GITHUB_REPOSITORY }/pull/${ prNumber.trim() }`;
1414
core.setOutput("url", url);
1515
});
1616
} catch (error) {

0 commit comments

Comments
 (0)