From 1d25d7520e1431855a00a31af28cb03a701d50ae Mon Sep 17 00:00:00 2001 From: Cesar Lugo Date: Tue, 19 Dec 2023 11:49:00 +0100 Subject: [PATCH] chore: add ready_for_review status to trigger ci-standards-check --- .github/workflows/ci-standard-checks.yml | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci-standard-checks.yml b/.github/workflows/ci-standard-checks.yml index 5f2fadf..fbd78d1 100644 --- a/.github/workflows/ci-standard-checks.yml +++ b/.github/workflows/ci-standard-checks.yml @@ -4,7 +4,12 @@ on: branches: - main pull_request: - types: [opened, edited, synchronize, reopened] + types: + - opened + - edited + - synchronize + - reopened + - ready_for_review branches: - main @@ -14,13 +19,11 @@ jobs: steps: - name: Check Out Source Code - uses: actions/checkout@v2 + uses: actions/checkout@v4 with: fetch-depth: 0 - name: CI Standard Checks - uses: Typeform/ci-standard-checks@v1-beta + uses: Typeform/ci-standard-checks@v1 with: githubToken: ${{ secrets.GITHUB_TOKEN }} - dockerUsername: ${{ secrets.GITLEAKS_DOCKER_USERNAME }} - dockerPassword: ${{ secrets.GITLEAKS_DOCKER_PASSWORD }}