We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d838109 commit 35322cdCopy full SHA for 35322cd
scripts/update-contributors.js
@@ -184,8 +184,13 @@ async function readReadme() {
184
* @returns {string} HTML for contributors section
185
*/
186
function formatContributorsSection(contributors) {
187
- // Filter out GitHub Actions bot
188
- const filteredContributors = contributors.filter((c) => !c.login.includes("[bot]") && !c.login.includes("R00-B0T"))
+ // Filter out GitHub Actions bot, cursor, and roomote
+ const filteredContributors = contributors.filter((c) =>
189
+ !c.login.includes("[bot]") &&
190
+ !c.login.includes("R00-B0T") &&
191
+ c.login !== "cursor" &&
192
+ c.login !== "roomote"
193
+ )
194
195
// Start building with Markdown table format
196
let markdown = `${START_MARKER}
0 commit comments