From cb6e9abb865dc0398c0797af4cd34b30b4418672 Mon Sep 17 00:00:00 2001 From: Sourcegraph Date: Wed, 20 Dec 2023 16:47:15 +0000 Subject: [PATCH] chore [DE-99] Add ci-standards-check --- .github/workflows/ci-standard-checks.yml | 28 ++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 .github/workflows/ci-standard-checks.yml 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 }}