From 775092ecc75bd745ae68d9ccb04b78ea8a275605 Mon Sep 17 00:00:00 2001 From: Alex Carpenter Date: Thu, 23 Apr 2026 12:06:17 -0400 Subject: [PATCH 1/4] chore: Add revalidate install script workflow --- .github/workflows/revalidate-install.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/revalidate-install.yml diff --git a/.github/workflows/revalidate-install.yml b/.github/workflows/revalidate-install.yml new file mode 100644 index 00000000..6f81b900 --- /dev/null +++ b/.github/workflows/revalidate-install.yml @@ -0,0 +1,16 @@ +name: Revalidate install script + +on: + push: + branches: [main] + paths: [install.sh] + +jobs: + revalidate: + runs-on: ubuntu-latest + steps: + - name: Revalidate install script cache + run: | + curl -X POST https://clerk.com/api/revalidate-install \ + -H "Authorization: Bearer ${{ secrets.REVALIDATION_SECRET }}" \ + --fail --silent --show-error From 400fbdb04f3f542eb3144e1196947c707248cc4c Mon Sep 17 00:00:00 2001 From: Alex Carpenter Date: Thu, 23 Apr 2026 13:04:42 -0400 Subject: [PATCH 2/4] Create silly-files-hear.md --- .changeset/silly-files-hear.md | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 .changeset/silly-files-hear.md diff --git a/.changeset/silly-files-hear.md b/.changeset/silly-files-hear.md new file mode 100644 index 00000000..a845151c --- /dev/null +++ b/.changeset/silly-files-hear.md @@ -0,0 +1,2 @@ +--- +--- From b71d160052db2a805c271a6d01aeaaad4a81b7e0 Mon Sep 17 00:00:00 2001 From: Alex Carpenter Date: Thu, 23 Apr 2026 14:59:26 -0400 Subject: [PATCH 3/4] Update revalidate-install.yml --- .github/workflows/revalidate-install.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/revalidate-install.yml b/.github/workflows/revalidate-install.yml index 6f81b900..e2347b97 100644 --- a/.github/workflows/revalidate-install.yml +++ b/.github/workflows/revalidate-install.yml @@ -5,6 +5,8 @@ on: branches: [main] paths: [install.sh] +permissions: {} + jobs: revalidate: runs-on: ubuntu-latest From 508e1e9c2918414e3124720b1895269e81664ed6 Mon Sep 17 00:00:00 2001 From: Alex Carpenter Date: Thu, 23 Apr 2026 15:16:44 -0400 Subject: [PATCH 4/4] ci(repo): use install revalidate secret --- .github/workflows/revalidate-install.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/revalidate-install.yml b/.github/workflows/revalidate-install.yml index e2347b97..a053841d 100644 --- a/.github/workflows/revalidate-install.yml +++ b/.github/workflows/revalidate-install.yml @@ -14,5 +14,5 @@ jobs: - name: Revalidate install script cache run: | curl -X POST https://clerk.com/api/revalidate-install \ - -H "Authorization: Bearer ${{ secrets.REVALIDATION_SECRET }}" \ + -H "Authorization: Bearer ${{ secrets.INSTALL_REVALIDATE_SECRET }}" \ --fail --silent --show-error