From aae7c17e7f1ea0f728dd2baa646e2d6884f336b6 Mon Sep 17 00:00:00 2001 From: strahi-linux Date: Mon, 21 Oct 2024 11:06:12 +0200 Subject: [PATCH] Fixed check index manual run flow. --- .github/workflows/checkIndexes.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/checkIndexes.yaml b/.github/workflows/checkIndexes.yaml index f233f4bbc..4e4044372 100644 --- a/.github/workflows/checkIndexes.yaml +++ b/.github/workflows/checkIndexes.yaml @@ -47,13 +47,13 @@ jobs: - name: Check Indexed Links - Live if: ${{ github.event.inputs.select_index == 'Live' || github.event.inputs.select_index == 'Both' }} run: | - python -u scripts/check_indexes.py ${{ github.repository }} ${{ secrets.GITHUB_TOKEN }} ${{ secrets.ES_HOST }} ${{ secrets.ES_USER }} ${{ secrets.ES_PASSWORD }} ${{ secrets.ES_INDEX_LIVE }} "--es_regex" "${{ github.event.inputs.regex }}" "--log_only" "${{ !github.event.inputs.fix }}" + python -u scripts/check_indexes.py ${{ github.repository }} ${{ secrets.GITHUB_TOKEN }} ${{ secrets.ES_HOST }} ${{ secrets.ES_USER }} ${{ secrets.ES_PASSWORD }} ${{ secrets.ES_INDEX_LIVE }} "--es_regex" "${{ github.event.inputs.regex }}" "--log_only" ${{ !github.event.inputs.fix }} continue-on-error: true # Ensure the workflow continues - name: Check Indexed Links - Test if: ${{ github.event.inputs.select_index == 'Test' || github.event.inputs.select_index == 'Both' }} run: | - python -u scripts/check_indexes.py ${{ github.repository }} ${{ secrets.GITHUB_TOKEN }} ${{ secrets.ES_HOST }} ${{ secrets.ES_USER }} ${{ secrets.ES_PASSWORD }} ${{ secrets.ES_INDEX_TEST }} "--es_regex" "${{ github.event.inputs.regex }}" "--log_only" "${{ !github.event.inputs.fix }}" + python -u scripts/check_indexes.py ${{ github.repository }} ${{ secrets.GITHUB_TOKEN }} ${{ secrets.ES_HOST }} ${{ secrets.ES_USER }} ${{ secrets.ES_PASSWORD }} ${{ secrets.ES_INDEX_TEST }} "--es_regex" "${{ github.event.inputs.regex }}" "--log_only" ${{ !github.event.inputs.fix }} continue-on-error: true # Ensure the workflow continues push_to_main_run: