diff --git a/.github/scripts/gfi_notify_team.js b/.github/scripts/gfi_notify_team.js index a50d5e8a1..2acb73720 100644 --- a/.github/scripts/gfi_notify_team.js +++ b/.github/scripts/gfi_notify_team.js @@ -51,8 +51,8 @@ module.exports = async ({ github, context }) => { } const labels = issue.labels?.map(l => l.name) || []; - - const isGFI = labels.includes('good first issue') + + const isGFI = labels.includes('Good First Issue') if (!isGFI) { return console.log('Issue is not a GFI'); @@ -100,6 +100,6 @@ module.exports = async ({ github, context }) => { console.log(`Triggered by: @${comment.user.login}`); console.log(`Message: ${message}`); } catch (err) { - console.log('❌ Error:', err.message); + console.log('❌ Error:', err.message); } }; \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 6f01ef29a..971a779ee 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -122,6 +122,7 @@ This changelog is based on [Keep a Changelog](https://keepachangelog.com/en/1.1. - Renamed `pr-missing-linked-issue.yml` and `pr_missing_linked_issue.js` to `bot-pr-missing-linked-issue.yml` and `bot-pr-missing-linked-issue.js` respectively. Enhanced LinkBot PR comment with clickable hyperlinks to documentation for linking issues and creating issues. (#1264) ### Fixed +- GFI workflow casing - Update `bot-workflows.yml` to trigger only on open PRs with failed workflows; ignore closed PRs and branches without open PRs. - Fixed step-security/harden-runner action SHA in merge conflict bot workflow (#1278) - Fixed the README account balance example to use correct SDK APIs and provide a runnable testnet setup. (#1250)