Skip to content
Open
Changes from 1 commit
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
16 changes: 16 additions & 0 deletions .github/workflows/revalidate-install.yml
Original file line number Diff line number Diff line change
@@ -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

Check warning

Code scanning / CodeQL

Workflow does not contain permissions Medium

Actions job or workflow does not limit the permissions of the GITHUB_TOKEN. Consider setting an explicit permissions block, using the following as a minimal starting point: {}
Comment thread
github-advanced-security[bot] marked this conversation as resolved.
Fixed
Loading