From ed3a059454ae5e2afc0d3bb53ae4d21b4d211cbf Mon Sep 17 00:00:00 2001 From: Ayman Bagabas Date: Tue, 29 Jul 2025 13:09:54 -0400 Subject: [PATCH] Fix $contributorName not being replaced Fixes: https://github.com/contributor-assistant/github-action/issues/173 --- src/persistence/persistence.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/persistence/persistence.ts b/src/persistence/persistence.ts index f5a08e48..70a1dd52 100644 --- a/src/persistence/persistence.ts +++ b/src/persistence/persistence.ts @@ -59,7 +59,7 @@ export async function updateFile( ? input .getSignedCommitMessage() .replace('$contributorName', context.actor) - // .replace('$pullRequestNo', pullRequestNo.toString()) + .replace('$pullRequestNo', pullRequestNo.toString()) .replace('$owner', owner) .replace('$repo', repo) : `@${context.actor} has signed the CLA in ${owner}/${repo}#${pullRequestNo}`,