Skip to content
This repository was archived by the owner on Mar 23, 2026. It is now read-only.

Commit c60e716

Browse files
authored
Merge pull request #174 from aymanbagabas/patch-1
Fix $pullRequestNo not being replaced
2 parents ca4a40a + ed3a059 commit c60e716

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/persistence/persistence.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ export async function updateFile(
5959
? input
6060
.getSignedCommitMessage()
6161
.replace('$contributorName', context.actor)
62-
// .replace('$pullRequestNo', pullRequestNo.toString())
62+
.replace('$pullRequestNo', pullRequestNo.toString())
6363
.replace('$owner', owner)
6464
.replace('$repo', repo)
6565
: `@${context.actor} has signed the CLA in ${owner}/${repo}#${pullRequestNo}`,

0 commit comments

Comments
 (0)