From cc75a38c8b35989eadf688a812a20be005922acf Mon Sep 17 00:00:00 2001 From: Dilum Aluthge Date: Thu, 19 Sep 2024 16:26:21 -0400 Subject: [PATCH] Use a different YAML syntax Co-authored-by: Curtis Vogt --- .github/workflows/pr_checks.yml | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/.github/workflows/pr_checks.yml b/.github/workflows/pr_checks.yml index a7582eb..a9ff911 100644 --- a/.github/workflows/pr_checks.yml +++ b/.github/workflows/pr_checks.yml @@ -17,13 +17,12 @@ jobs: if: always() # this line is important to keep the `finalize` job from being marked as skipped; do not change or delete this line runs-on: ubuntu-latest timeout-minutes: 10 - needs: [ - checked-in-files, - build, - npm-run-test, - make-targets, - stalecheck-npm-install, - ] + needs: + - checked-in-files + - build + - npm-run-test + - make-targets + - stalecheck-npm-install steps: - run: | echo checked-in-files: ${{ needs.checked-in-files.result }}