From a977bd78ed5f62f3afb91d7f31b56560b9ce4fb7 Mon Sep 17 00:00:00 2001 From: Matias Ozdy Date: Tue, 17 Oct 2023 10:33:12 +0200 Subject: [PATCH] Update ci-standard-checks.yml --- .github/workflows/ci-standard-checks.yml | 21 +++++++++++++-------- 1 file changed, 13 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ci-standard-checks.yml b/.github/workflows/ci-standard-checks.yml index d00e8fe..0f58bf4 100644 --- a/.github/workflows/ci-standard-checks.yml +++ b/.github/workflows/ci-standard-checks.yml @@ -2,23 +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 }} + skipChecks: required-typescript