From 08c3bddfbebbfda42832a276f62761ea9235bfa8 Mon Sep 17 00:00:00 2001 From: jdfiguer Date: Tue, 28 May 2024 15:20:46 -0400 Subject: [PATCH] Removes build-documentation check-for-duplicates skips --- .github/workflows/build-documentation.yml | 32 +++++++++++------------ 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/.github/workflows/build-documentation.yml b/.github/workflows/build-documentation.yml index 5cbfd04b6..02af0d51f 100644 --- a/.github/workflows/build-documentation.yml +++ b/.github/workflows/build-documentation.yml @@ -10,25 +10,25 @@ defaults: shell: bash jobs: - # Checks for duplicate actions. Skips push actions if there is a matching or - # duplicate pull-request action. - checks-for-duplicates: - runs-on: ubuntu-latest - # Map a step output to a job output - outputs: - should_skip: ${{ steps.skip_check.outputs.should_skip }} - steps: - - id: skip_check - uses: fkirc/skip-duplicate-actions@master - with: - concurrent_skipping: 'same_content' - skip_after_successful_duplicate: 'true' - do_not_skip: '["pull_request", "workflow_dispatch", "schedule"]' + # # Checks for duplicate actions. Skips push actions if there is a matching or + # # duplicate pull-request action. + # checks-for-duplicates: + # runs-on: ubuntu-latest + # # Map a step output to a job output + # outputs: + # should_skip: ${{ steps.skip_check.outputs.should_skip }} + # steps: + # - id: skip_check + # uses: fkirc/skip-duplicate-actions@master + # with: + # concurrent_skipping: 'same_content' + # skip_after_successful_duplicate: 'true' + # do_not_skip: '["pull_request", "workflow_dispatch", "schedule"]' checkout-and-cache: name: Custom checkout and cache for cFS documents - needs: checks-for-duplicates - if: ${{ needs.checks-for-duplicates.outputs.should_skip != 'true' || contains(github.ref, 'main') }} + # needs: checks-for-duplicates + if: ${{ contains(github.ref, 'main') }} runs-on: ubuntu-latest steps: