From d03aec22a37c040b95d792473b248f82d1b1c1ba Mon Sep 17 00:00:00 2001 From: Meir Blachman Date: Sun, 20 Oct 2024 14:31:30 +0300 Subject: [PATCH] Update pr_check_client_side_changes.yml --- .github/workflows/pr_check_client_side_changes.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pr_check_client_side_changes.yml b/.github/workflows/pr_check_client_side_changes.yml index 7fa11acde4..95818052f7 100644 --- a/.github/workflows/pr_check_client_side_changes.yml +++ b/.github/workflows/pr_check_client_side_changes.yml @@ -27,7 +27,7 @@ jobs: repo: context.repo.repo, commit_sha: context.sha, }); - const commitHeader = data.message.split('\n')[0]; + const commitHeader = data.message.split('\n')[0].substring(1); // skip the `#` character const title = '[Ports]: Backport client side changes for ' + currentPlaywrightVersion; for (const repo of ['playwright-python', 'playwright-java', 'playwright-dotnet']) {