Skip to content

Commit 1ae4ca6

Browse files
committed
Fix mapping between Raycast username and GH username
1 parent 1bbd23b commit 1ae4ca6

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/raycast2github.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
"destiner": "Destiner",
4343
"SonicSpark": "moojing",
4444
"lardissone": "lardissone",
45-
"fedevitaledev": "splash-cli",
45+
"fedevitaledev": "Rawnly",
4646
"astrit": "astrit",
4747
"megapixel23": "MEGApixel23",
4848
"priithaamer": "priithaamer",
@@ -193,4 +193,4 @@
193193
"iainsimmons": "iainsimmons",
194194
"sandypockets": "sandypockets",
195195
"mike182uk": "mike182uk"
196-
}
196+
}

scripts/generate-code-owners.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ async function fetchGHUsername(extension, raycastUsername) {
8080
const line = package.split("\n").findIndex((l) => l.indexOf(`"${raycastUsername}"`) !== -1);
8181
const commitHash = await new Promise((resolve, reject) =>
8282
exec(
83-
// find commit that added the package.json
83+
// find commit that added contributor to the package.json
8484
`cd "${extensionsDir}" && git blame --porcelain -L ${line},${line} "${extension.name}/package.json"`,
8585
(err, stdout, stderr) => {
8686
if (err || stderr) {

0 commit comments

Comments
 (0)