Skip to content

Commit 0d4be55

Browse files
committed
refactor(reports): restructure contributors with subsections
Add main 'Contributors' header with two subsections: - 'New Lights' for first-time contributors (with gold highlight) - 'Wayfinders' for returning contributors This improves navigation and clearly distinguishes newcomers from veteran contributors while maintaining the Destiny 2 theme. Assisted-by: Claude Sonnet 4.5 via GitHub Copilot
1 parent 7371d13 commit 0d4be55

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

reports/2026-01-31-report.mdx

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -578,7 +578,9 @@ Keep Bluefin healthy with green builds. Wranglers apply within!
578578
| 💯 **100% Club** | _None. Vegeta is displeased._ |
579579
| ⏱️ **Avg Build Time** | 18 minutes across all variants |
580580

581-
## New Lights
581+
## Contributors
582+
583+
### New Lights
582584

583585
We welcome our newest Guardians to the project.
584586

@@ -610,7 +612,7 @@ We welcome our newest Guardians to the project.
610612

611613
</div>
612614

613-
## Contributors
615+
### Wayfinders
614616

615617
> "Define yourself by your actions."
616618
>

scripts/lib/markdown-generator.mjs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -841,11 +841,11 @@ ${highlights}`;
841841
* @returns {string} Markdown section
842842
*/
843843
function generateContributorsSection(contributors, newContributors) {
844-
let section = "";
844+
let section = "## Contributors\n\n";
845845

846846
// Section 1: New Contributors (highlighted, shown first)
847847
if (newContributors.length > 0) {
848-
section += `## New Lights\n\n`;
848+
section += `### New Lights\n\n`;
849849
section += `We welcome our newest Guardians to the project.\n\n`;
850850
section += `> "I do not know what the future holds. But I know this: with you at our side, there is nothing we cannot face."\n`;
851851
section += `> \n`;
@@ -872,7 +872,7 @@ function generateContributorsSection(contributors, newContributors) {
872872
);
873873

874874
if (continuingContributors.length > 0) {
875-
section += `## Contributors\n\n`;
875+
section += `### Wayfinders\n\n`;
876876
section += `> "Define yourself by your actions."\n`;
877877
section += `> \n`;
878878
section += `> —Lord Saladin\n\n`;

0 commit comments

Comments
 (0)