From 72d99d39aac9d1620774006fcbe60928a5911cf4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mario=20Beltr=C3=A1n?= Date: Fri, 12 Jan 2024 13:01:55 +0100 Subject: [PATCH] chore: update verifications references --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7803a1f7..970bb07c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,15 +9,15 @@ concurrency: cancel-in-progress: true jobs: - validations: - name: Run validations + verifications: + name: Verifications uses: ./.github/workflows/verifications.yml required-checks: name: Require CI status checks runs-on: ubuntu-latest if: ${{ !cancelled() && github.event.action != 'closed' }} - needs: [validations] + needs: [verifications] steps: - run: ${{ !contains(needs.*.result, 'failure') }} - run: ${{ !contains(needs.*.result, 'cancelled') }}