Skip to content

Commit 00c0ad6

Browse files
authored
Merge pull request #66 from exploreriii/fix-casing
Fix casing
2 parents cd9ca69 + e04ef2f commit 00c0ad6

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.github/scripts/gfi_notify_team.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,8 @@ module.exports = async ({ github, context }) => {
5151
}
5252

5353
const labels = issue.labels?.map(l => l.name) || [];
54-
55-
const isGFI = labels.includes('good first issue')
54+
55+
const isGFI = labels.includes('Good First Issue')
5656

5757
if (!isGFI) {
5858
return console.log('Issue is not a GFI');
@@ -100,6 +100,6 @@ module.exports = async ({ github, context }) => {
100100
console.log(`Triggered by: @${comment.user.login}`);
101101
console.log(`Message: ${message}`);
102102
} catch (err) {
103-
console.log('❌ Error:', err.message);
103+
console.log('❌ Error:', err.message);
104104
}
105105
};

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -122,6 +122,7 @@ This changelog is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.
122122
- 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)
123123

124124
### Fixed
125+
- GFI workflow casing
125126
- Update `bot-workflows.yml` to trigger only on open PRs with failed workflows; ignore closed PRs and branches without open PRs.
126127
- Fixed step-security/harden-runner action SHA in merge conflict bot workflow (#1278)
127128
- Fixed the README account balance example to use correct SDK APIs and provide a runnable testnet setup. (#1250)

0 commit comments

Comments
 (0)