From 43ad6a3ed8e83786b02f767b8307fc1abe5bf1fe Mon Sep 17 00:00:00 2001 From: Guilherme Branco Stracini Date: Sat, 12 Oct 2024 02:13:45 +0100 Subject: [PATCH] Add Infisical Secrets Check Workflow (#313) * Create infisical-secrets-check.yml * Update infisical-secrets-check.yml --------- Co-authored-by: gstraccini[bot] <150967461+gstraccini[bot]@users.noreply.github.com> --- .github/workflows/infisical-secrets-check.yml | 26 +++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .github/workflows/infisical-secrets-check.yml diff --git a/.github/workflows/infisical-secrets-check.yml b/.github/workflows/infisical-secrets-check.yml new file mode 100644 index 000000000..dd7a9ae18 --- /dev/null +++ b/.github/workflows/infisical-secrets-check.yml @@ -0,0 +1,26 @@ +name: Infisical secrets check + +on: + workflow_dispatch: + pull_request: + +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true + +jobs: + + secrets-scan: + runs-on: ubuntu-latest + permissions: + contents: read + pull-requests: write + steps: + + - name: Checkout repo + uses: actions/checkout@v4 + with: + fetch-depth: 0 + + - name: Infisical secrets check + uses: guibranco/github-infisical-secrets-check-action@v1.1.10