Skip to content

Commit

Permalink
IC:2021-04-20, Check for duplicates for all jobs in docs workflow
Browse files Browse the repository at this point in the history
Adds the "needs" and "if" statement to use the check-for-duplicates action to the usersguide and osalguide documentation jobs.
  • Loading branch information
astrogeco committed Apr 22, 2021
1 parent 151bab9 commit 8efa7c9
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/build-documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 8efa7c9

Please sign in to comment.