From 67b67e37c83e335b29876abf377d24b3cdded5fc Mon Sep 17 00:00:00 2001 From: CTO Hermes Date: Mon, 1 Jun 2026 09:29:19 +0700 Subject: [PATCH] fix: hardcoded Infisical identity-id + branding footer on no-issues (#62) --- .github/actions/cora-review/action.yml | 4 ++-- .github/workflows/deploy-website.yml | 2 +- .github/workflows/release.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/actions/cora-review/action.yml b/.github/actions/cora-review/action.yml index a4198a7..cc3ba45 100644 --- a/.github/actions/cora-review/action.yml +++ b/.github/actions/cora-review/action.yml @@ -119,11 +119,11 @@ runs: let body; if (!sarifContent || !sarifContent.runs || sarifContent.runs.length === 0) { - body = `## ๐Ÿ” Cora AI Code Review\n\nโœ… **No issues found.** Code looks good!`; + body = `## ๐Ÿ” Cora AI Code Review\n\nโœ… **No issues found.** Code looks good!\n\n---\n_Review powered by [cora-cli](https://github.com/ajianaz/cora-cli) ยท BYOK ยท MIT_`; } else { const results = sarifContent.runs[0].results || []; if (results.length === 0) { - body = `## ๐Ÿ” Cora AI Code Review\n\nโœ… **No issues found.** Code looks good!`; + body = `## ๐Ÿ” Cora AI Code Review\n\nโœ… **No issues found.** Code looks good!\n\n---\n_Review powered by [cora-cli](https://github.com/ajianaz/cora-cli) ยท BYOK ยท MIT_`; } else { const grouped = {}; for (const r of results) { diff --git a/.github/workflows/deploy-website.yml b/.github/workflows/deploy-website.yml index 84cf5e0..dac3f7f 100644 --- a/.github/workflows/deploy-website.yml +++ b/.github/workflows/deploy-website.yml @@ -50,7 +50,7 @@ jobs: uses: Infisical/secrets-action@v1.0.9 with: method: "oidc" - identity-id: "6bd2b8d8-a9a3-4331-8b37-bf2764fc320b" + identity-id: "${{ secrets.INFISICAL_IDENTITY_ID }}" project-slug: "github-actions" env-slug: "prod" domain: "https://infisical.ajianaz.dev" diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 5b2d278..2ee5733 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -98,7 +98,7 @@ jobs: uses: Infisical/secrets-action@v1.0.9 with: method: "oidc" - identity-id: "6bd2b8d8-a9a3-4331-8b37-bf2764fc320b" + identity-id: "${{ secrets.INFISICAL_IDENTITY_ID }}" project-slug: "github-actions" env-slug: "prod" domain: "https://infisical.ajianaz.dev"