From 372f0c364f8b38b775bdc5ac81e509abca07724f Mon Sep 17 00:00:00 2001 From: LuaanNguyen Date: Wed, 11 Mar 2026 11:45:15 -0700 Subject: [PATCH 1/2] Fix technology label typos in skills section --- src/app/components/sections/Skills.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/app/components/sections/Skills.tsx b/src/app/components/sections/Skills.tsx index 8219214..b23b7a8 100644 --- a/src/app/components/sections/Skills.tsx +++ b/src/app/components/sections/Skills.tsx @@ -109,10 +109,10 @@ const skillItems: { quote: ReactNode; name: string }[] = [ src="https://cdn.jsdelivr.net/gh/devicons/devicon@latest/icons/postgresql/postgresql-original.svg" width={40} height={40} - alt="PostreSQL" + alt="PostgreSQL" /> ), - name: "PostreSQL", + name: "PostgreSQL", }, { quote: ( @@ -131,10 +131,10 @@ const skillItems: { quote: ReactNode; name: string }[] = [ src="https://cdn.jsdelivr.net/gh/devicons/devicon@latest/icons/mysql/mysql-original-wordmark.svg" width={40} height={40} - alt="MongoDB" + alt="MySQL" /> ), - name: "MongoDB", + name: "MySQL", }, { quote: ( From c7b6820b09f0af4299e0f2808bf905616a970bb9 Mon Sep 17 00:00:00 2001 From: LuaanNguyen Date: Wed, 11 Mar 2026 11:51:07 -0700 Subject: [PATCH 2/2] Grant issues:write for PR comment posting --- .github/workflows/codex-pr-review.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/codex-pr-review.yml b/.github/workflows/codex-pr-review.yml index 284ceca..bd7fa7c 100644 --- a/.github/workflows/codex-pr-review.yml +++ b/.github/workflows/codex-pr-review.yml @@ -9,6 +9,7 @@ jobs: runs-on: ubuntu-latest permissions: contents: read + issues: write pull-requests: write outputs: final_message: ${{ steps.run_codex.outputs.final-message }}