Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions .github/skills/update-contributors/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,10 @@ npm run update-contributors
### 3. What the script does

1. Fetches all repositories from the Torrust GitHub organization
2. Fetches contributors from each repository
3. Deduplicates contributors by username
4. Updates `defaultContributorsList` in `src/lib/constants/constants.ts`
2. **Filters out forked and archived repositories** — forks include upstream contributors from projects Torrust doesn't own (e.g. `cargo-chef`, `grcov`), and archived repos are no longer active
3. Fetches contributors from each remaining repository (using the GitHub `/contributors` endpoint, which returns users who have authored at least one commit)
4. Deduplicates contributors by username
5. Updates `defaultContributorsList` in `src/lib/constants/constants.ts`

### 4. Verify and commit

Expand Down
160 changes: 80 additions & 80 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 7 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"private": true,
"type": "module",
"engines": {
"node": ">=20.19.0"
"node": ">=26.0.0"
},
"scripts": {
"dev": "vite dev",
Expand All @@ -24,18 +24,18 @@
"@melt-ui/pp": "^0.3.2",
"@melt-ui/svelte": "^0.86.6",
"@sveltejs/adapter-static": "^3.0.10",
"@sveltejs/kit": "^2.66.0",
"@sveltejs/kit": "^2.67.0",
"@sveltejs/vite-plugin-svelte": "^7.0.0",
"@types/dateformat": "^5.0.3",
"@types/node": "^25.6.0",
"@types/node": "^26.0.0",
"@types/prismjs": "^1.26.6",
"@typescript-eslint/eslint-plugin": "^8.61.1",
"@typescript-eslint/parser": "^8.61.1",
"@typescript-eslint/eslint-plugin": "^8.62.0",
"@typescript-eslint/parser": "^8.62.0",
"eslint": "^10.2.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.6",
"eslint-plugin-svelte": "^3.17.0",
"globals": "^17.5.0",
"globals": "^17.7.0",
"mdsvex": "^0.12.7",
"prettier": "^3.8.2",
"prettier-plugin-svelte": "^4.1.1",
Expand All @@ -51,7 +51,7 @@
"tailwindcss": "^4.2.2",
"tsx": "^4.21.0",
"typescript": "^6.0.2",
"typescript-eslint": "^8.61.1",
"typescript-eslint": "^8.62.0",
"vite": "^8.0.8",
"vite-plugin-imagemin": "^0.6.1"
},
Expand Down
Loading