From 8efa7c9531221e0587c5371f430a3ea6e93613ec Mon Sep 17 00:00:00 2001 From: "Gerardo E. Cruz-Ortiz" <59618057+astrogeco@users.noreply.github.com> Date: Wed, 21 Apr 2021 22:28:06 -0400 Subject: [PATCH] IC:2021-04-20, Check for duplicates for all jobs in docs workflow Adds the "needs" and "if" statement to use the check-for-duplicates action to the usersguide and osalguide documentation jobs. --- .github/workflows/build-documentation.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/build-documentation.yml b/.github/workflows/build-documentation.yml index 6f7f6d9cb..3ba6c8f0f 100644 --- a/.github/workflows/build-documentation.yml +++ b/.github/workflows/build-documentation.yml @@ -72,6 +72,8 @@ jobs: build-usersguide: # Name the Job + needs: checks-for-duplicates + if: ${{ needs.checks-for-duplicates.outputs.should_skip != 'true' }} name: Users Guide # Set the type of machine to run on runs-on: ubuntu-18.04 @@ -154,6 +156,8 @@ jobs: build-osalguide: # Name the Job + needs: checks-for-duplicates + if: ${{ needs.checks-for-duplicates.outputs.should_skip != 'true' }} name: Osal Guide # Set the type of machine to run on runs-on: ubuntu-18.04