From 44f19d4e94a918e84d4e37bbcb5a42f29b877c27 Mon Sep 17 00:00:00 2001 From: heitorlessa Date: Tue, 19 Jul 2022 14:07:24 +0200 Subject: [PATCH] fix(ci): remove additional quotes in PR action --- .github/scripts/constants.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/scripts/constants.js b/.github/scripts/constants.js index 2c1d6f9ab76..3447bef0ac2 100644 --- a/.github/scripts/constants.js +++ b/.github/scripts/constants.js @@ -1,7 +1,7 @@ module.exports = Object.freeze({ /** @type {string} */ // Values: https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#pull_request - "PR_ACTION": process.env.PR_ACTION || "", + "PR_ACTION": process.env.PR_ACTION?.replace(/"/g, '') || "", /** @type {string} */ "PR_AUTHOR": process.env.PR_AUTHOR?.replace(/"/g, '') || "",