diff --git a/.github/workflows/ci-standard-checks.yml b/.github/workflows/ci-standard-checks.yml new file mode 100644 index 0000000..3b47de7 --- /dev/null +++ b/.github/workflows/ci-standard-checks.yml @@ -0,0 +1,28 @@ +name: CI Standard Checks +on: + push: + branches: + - main + pull_request: + types: + - opened + - edited + - synchronize + - reopened + - ready_for_review + branches: + - main +jobs: + ci-standard-checks: + runs-on: + - self-hosted + - automated-checks-ephemeral + steps: + - name: Check Out Source Code + uses: actions/checkout@v4 + with: + fetch-depth: 0 + - name: CI Standard Checks + uses: Typeform/ci-standard-checks@v1 + with: + githubToken: ${{ secrets.GITHUB_TOKEN }}