Skip to content

Commit

Permalink
Update leaderboard.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
dscarlett-chwy authored Oct 1, 2024
1 parent af95e19 commit e295139
Showing 1 changed file with 90 additions and 18 deletions.
108 changes: 90 additions & 18 deletions .github/workflows/leaderboard.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,17 @@ jobs:
const issueNumber = 1; // Replace with your actual issue number
const REPOS = [
'galaxy-bytes/main-test-repo',
'GCodeHouse/Cohort4',
'TBD54566975/developer.tbd.website'
//'blackgirlbytes/LunaFocus'
'TBD54566975/developer.tbd.website',
'TBD54566975/web5-js',
'TBD54566975/web5-rs',
'TBD54566975/dwn-sdk-js',
'TBD54566975/tbd-examples',
'TBD54566975/didpay',
'TBD54566975/did-dht',
'TBD54566975/incubation-dcx',
'block-open-source/goose-plugins',
'csuwildcat/fllw',
'csuwildcat/aliased'
];
const POINT_VALUES = {
Expand Down Expand Up @@ -61,7 +68,6 @@ jobs:
const isMerged = !!pr.merged_at;
const isRecent = new Date(pr.merged_at) > new Date(thirtyDaysAgo);
const isHacktoberfest = pr.labels.some(label => label.name.toLowerCase() === 'hacktoberfest');
console.log(`PR #${pr.number}: merged=${isMerged}, recent=${isRecent}, hacktoberfest=${isHacktoberfest}`);
return isMerged && isRecent && isHacktoberfest;
}).map(pr => ({
user: pr.user.login,
Expand All @@ -71,7 +77,6 @@ jobs:
prTitle: pr.title,
}));
console.log(`Found ${hacktoberfestPRs.length} qualifying PRs for ${repo}`);
return hacktoberfestPRs;
} catch (error) {
console.error(`Error fetching PRs for ${repo}: ${error.message}`);
Expand All @@ -84,18 +89,13 @@ jobs:
const allPRs = await Promise.all(REPOS.map(fetchRecentPRs));
const flatPRs = allPRs.flat();
console.log(`Total qualifying PRs found: ${flatPRs.length}`);
console.log('Qualifying PRs:', JSON.stringify(flatPRs, null, 2));
const leaderboard = flatPRs.reduce((acc, pr) => {
if (!acc[pr.user]) acc[pr.user] = { points: 0, prs: 0 };
acc[pr.user].points += pr.points;
acc[pr.user].prs += 1;
return acc;
}, {});
console.log('Leaderboard object:', JSON.stringify(leaderboard, null, 2));
const sortedLeaderboard = Object.entries(leaderboard)
.sort(([, a], [, b]) => b.points - a.points)
.map(([username, data], index) => ({
Expand All @@ -105,8 +105,6 @@ jobs:
prs: data.prs
}));
console.log(`Generated leaderboard with ${sortedLeaderboard.length} entries`);
console.log('Sorted leaderboard:', JSON.stringify(sortedLeaderboard, null, 2));
return sortedLeaderboard;
} catch (error) {
console.error(`Error generating leaderboard: ${error.message}`);
Expand All @@ -115,13 +113,87 @@ jobs:
};
const updateIssue = async (leaderboardData) => {
const issueBody = `
# Hacktoberfest Leaderboard
const issueBody = `# 🏆 TBD Hacktoberfest 2024 Leaderboard 🏆
Hello, lovely contributors! As Hacktoberfest 2024 and the crisp Fall breeze refreshes us, we wanted to make the contribution process extra fun. Check our live leaderboard below to see who our top contributors are this year in real-time. Not only does this recognize everyone's efforts, it also brings an amplified competitive vibe with each contribution.
### 🌟 **Current Rankings:**
| Rank | Contributor | Points | PRs |
|------|-------------|--------|-----|
${leaderboardData.map(entry => `| ${entry.rank} | @${entry.username} | ${entry.points} | ${entry.prs} |`).join('\n')}
### 📜 How It Works:
The top 10 contributors with the most points will snag custom swag with this year's exclusive TBD x Hacktoberfest 2024 design. To earn your place in the leaderboard, we have created a points system that is explained below. As you complete a task by successfully merging a PR, you will automatically be granted a certain # of points.
#### 💯 Point System
| Weight | Points Awarded | Description |
|---------|-------------|-------------|
| 🐭 **Small** | 5 points | For smaller tasks that take limited time to complete and/or don't require any product knowledge. |
| 🐰 **Medium** | 10 points | For average tasks that take additional time to complete and/or require some product knowledge. |
| 🐂 **Large** | 15 points | For heavy tasks that takes lots of time to complete and/or possibly require deep product knowledge. |
#### 🎁 Rewards
- Made it to the **top 10**? Our Top 10 Contributors with the most points will be awarded TBD x Hacktoberfest 2024 swag from our [TBD shop](https://www.tbd.shop/s/shop). Keep an eye on your progress to make sure you're one step ahead!
- Among our **top 3**? Our Top 3 Superstars earn very limited, customized TBD x Hacktoberfest 2024 swag with your name on it. Stay tuned for the reveal!
### FAQ
- **Frequency of Updates:** The leaderboard will be updated every 1 hour.
- **Criteria:** Rankings are based on how many points you earn across all participating TBD repos. To ensure your PRs are successfully merged:
- Ensure your contributions are aligned with our [project's CoC](https://developer.tbd.website/open-source/code-of-conduct).
- Refer to each participating repo's [Contributing Guide](https://github.com/TBD54566975/developer.tbd.website/blob/main/CONTRIBUTING.md).
- **Tie-Breakers:** In the event of a tie, the contributor with the earliest PR merge timestamp will be ranked higher.
### 🚀 Get Featured:
Want to see your name climbing our ranks?
Explore our issues with the labels \`good-first-issue\` , \`no-code\` and \`hacktoberfest\` in each of our participating repos' Project Hubs:
- **developer.tbd.website**: \`MDX\`, \`Javascript\`, \`CSS\`, \`MARKDOWN\`
- [Hacktoberfest Project Hub](https://github.com/TBD54566975/developer.tbd.website/issues/1552)
- [Contributing Guide](https://github.com/TBD54566975/developer.tbd.website/blob/main/CONTRIBUTING.md)
- **web5-js**: \`Typescript\`, \`Javascript\`
- [Hacktoberfest Project Hub: Protocol Explorer](https://github.com/TBD54566975/tbd-examples/issues/97)
- [Hacktoberfest Project Hub: General](https://github.com/TBD54566975/web5-js/issues/908)
- [Contributing Guide](https://github.com/TBD54566975/web5-js/blob/main/CONTRIBUTING.md)
- **web5-rs**: \`Rust\`
- [Hacktoberfest Project Hub](https://github.com/TBD54566975/web5-rs/issues/322)
- [Contributing Guide](https://github.com/TBD54566975/web5-rs/blob/main/CONTRIBUTING.md)
- **dwn-sdk-js**: \`Typescript\`, \`Javascript\`
- [Hacktoberfest Project Hub](https://github.com/TBD54566975/dwn-sdk-js/issues/806)
- [Contributing Guide](https://github.com/TBD54566975/dwn-sdk-js/blob/main/CONTRIBUTING.md)
- **DWA starter**: \`Javascript\`
- [Hacktoberfest Project Hub: VanillaJS](https://github.com/TBD54566975/tbd-examples/issues/81)
- [Hacktoberfest Project Hub: Vue](https://github.com/TBD54566975/tbd-examples/issues/63)
- [Contributing Guide](https://github.com/TBD54566975/tbd-examples/blob/main/CONTRIBUTING.md)
- **DIDPay**: \`Dart\`
- [Hacktoberfest Project Hub](https://github.com/TBD54566975/didpay/issues/298)
- [Contributing Guide](https://github.com/TBD54566975/didpay/blob/main/CONTRIBUTING.md)
- **DID DHT**: \`Go\`
- [Hacktoberfest Project Hub](https://github.com/TBD54566975/did-dht/issues/292)
- [Contributing Guide](https://github.com/TBD54566975/did-dht/blob/main/CONTRIBUTING.md)
- **DCX**: \`TypeScript\`, \`JavaScript\`
- [Hacktoberfest Project Hub](https://github.com/TBD54566975/incubation-dcx/labels/hacktoberfest%202024)
- [Contributing Guide](https://github.com/TBD54566975/incubation-dcx/blob/main/CONTRIBUTING.md)
- **Goose Plugins**: \`Python\`
- [Hacktoberfest Project Hub](https://github.com/block-open-source/goose-plugins/issues/3)
- [Contributing Guide](https://github.com/block-open-source/goose-plugins/blob/main/README.md)
- **Fllw, Aliased**: \`TypeScript\`, \`JavaScript\`
- [Hacktoberfest Task: Fllw](https://github.com/csuwildcat/fllw/issues/7)
- [Hacktoberfest Task: Aliased](https://github.com/csuwildcat/aliased/issues/4)
Excited to see everyone's hard work. Thank you so much for your invaluable contributions, and let the fun competition begin!
Last updated: ${new Date().toUTCString()}
`;
Expand All @@ -147,9 +219,9 @@ jobs:
} else {
console.log("No leaderboard data to update.");
const emptyIssueBody = `
# Hacktoberfest Leaderboard
No qualifying PRs found at this time.
# 🏆 TBD Hacktoberfest 2024 Leaderboard 🏆
No qualifying PRs found at this time. Check back soon!
Last updated: ${new Date().toUTCString()}
`;
Expand Down

0 comments on commit e295139

Please sign in to comment.