Skip to content

Commit d440e99

Browse files
authored
fix(ci): remove additional quotes in PR action (#1317)
1 parent 22a9078 commit d440e99

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/scripts/constants.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
module.exports = Object.freeze({
22
/** @type {string} */
33
// Values: https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#pull_request
4-
"PR_ACTION": process.env.PR_ACTION || "",
4+
"PR_ACTION": process.env.PR_ACTION?.replace(/"/g, '') || "",
55

66
/** @type {string} */
77
"PR_AUTHOR": process.env.PR_AUTHOR?.replace(/"/g, '') || "",

0 commit comments

Comments
 (0)