From 83409d23326fd1611bd4d5a70889651eeabbeae1 Mon Sep 17 00:00:00 2001 From: SETI Bender <65597229+seti-tf@users.noreply.github.com> Date: Thu, 20 May 2021 20:10:17 +0200 Subject: [PATCH] chore: [SETI-1159] :construction_worker: add ci standard workflow --- .github/workflows/ci-standard-checks.yml | 26 ++++++++++++++++++++++++ 1 file changed, 26 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..44a6f11 --- /dev/null +++ b/.github/workflows/ci-standard-checks.yml @@ -0,0 +1,26 @@ +name: CI Standard Checks +on: + push: + branches: + - master + pull_request: + types: [opened, edited, synchronize, reopened] + branches: + - master + +jobs: + ci-standard-checks: + runs-on: [ubuntu-latest] + + steps: + - name: Check Out Source Code + uses: actions/checkout@v2 + 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 }}