diff --git a/.github/workflow-scripts/verifyVersion.js b/.github/workflow-scripts/verifyVersion.js index b91efe898ee..744f148c90e 100644 --- a/.github/workflow-scripts/verifyVersion.js +++ b/.github/workflow-scripts/verifyVersion.js @@ -11,7 +11,7 @@ module.exports = async (github, context) => { const issue = context.payload.issue; // Ignore issues using upgrade template (they use a special label) - if (issue.labels.find(label => label.name == 'Type: Upgrade Issue')) { + if (issue.labels.find(label => label.name === 'Type: Upgrade Issue')) { return; }