Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/scripts/gfi_notify_team.js
Original file line number Diff line number Diff line change
Expand Up @@ -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');
Expand Down Expand Up @@ -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);
}
};
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
Loading