diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 6451d0de..d6d6bc47 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -6,8 +6,7 @@ on: - "main" paths: - "web/**" - - "guides/**" - - "scripts/**" + - "lang/**" - "CHANGELOG.md" workflow_dispatch: diff --git a/web/app/[locale]/docs/about/contributors/page.tsx b/web/app/[locale]/docs/about/contributors/page.tsx index e5cecf75..d5980fc6 100644 --- a/web/app/[locale]/docs/about/contributors/page.tsx +++ b/web/app/[locale]/docs/about/contributors/page.tsx @@ -54,6 +54,31 @@ const contributors: Contributor[] = [ roleKey: "testing", avatar: "https://raw.githubusercontent.com/MacRimi/ProxMenux/main/images/avatars/Kamunhas.png", }, + // Added 2026-05-31 after the v1.2.2 release. Defaulted to "testing" + // and GitHub's avatar service so the entries work immediately + // without needing avatar files uploaded under /images/avatars/. + // Swap to a per-contributor /images/avatars/.png once the + // custom artwork is ready. + { + name: "heriberto", + roleKey: "testing", + avatar: "https://github.com/heriberto.png", + }, + { + name: "JF_Carr", + roleKey: "testing", + avatar: "https://github.com/JF_Carr.png", + }, + { + name: "rafapuerta", + roleKey: "testing", + avatar: "https://github.com/rafapuerta.png", + }, + { + name: "JcMinarro", + roleKey: "testing", + avatar: "https://github.com/JcMinarro.png", + }, ] export default async function ContributorsPage({ params }: { params: Promise<{ locale: string }> }) {