From 151e20c2bc22c39008ecccadeb0810e29e9401e7 Mon Sep 17 00:00:00 2001 From: Matias Ozdy Date: Tue, 17 Oct 2023 12:27:54 +0200 Subject: [PATCH] Adding standard checks --- .github/workflows/ci-standard-checks.yml | 23 +++++++++++++---------- 1 file changed, 13 insertions(+), 10 deletions(-) diff --git a/.github/workflows/ci-standard-checks.yml b/.github/workflows/ci-standard-checks.yml index 44a6f11..0f58bf4 100644 --- a/.github/workflows/ci-standard-checks.yml +++ b/.github/workflows/ci-standard-checks.yml @@ -2,25 +2,28 @@ name: CI Standard Checks on: push: branches: - - master + - main pull_request: - types: [opened, edited, synchronize, reopened] + types: + - opened + - edited + - synchronize + - reopened + - ready_for_review branches: - - master - + - main jobs: ci-standard-checks: - runs-on: [ubuntu-latest] - + runs-on: + - self-hosted + - automated-checks-ephemeral steps: - name: Check Out Source Code - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: fetch-depth: 0 - - name: CI Standard Checks uses: Typeform/ci-standard-checks@v1 with: githubToken: ${{ secrets.GITHUB_TOKEN }} - dockerUsername: ${{ secrets.GITLEAKS_DOCKER_USERNAME }} - dockerPassword: ${{ secrets.GITLEAKS_DOCKER_PASSWORD }} + skipChecks: required-typescript