From 3920096e31dd65338d9182a9de8a441076af14d4 Mon Sep 17 00:00:00 2001 From: Patrick Lehmann Date: Fri, 12 Jan 2024 14:23:04 +0100 Subject: [PATCH] Fixed prefix parameters and fixed typo in workflow name. --- .../{CheckDocumenation.yml => CheckDocumentation.yml} | 10 +++++----- .github/workflows/IntermediateCleanUp.yml | 4 ++-- 2 files changed, 7 insertions(+), 7 deletions(-) rename .github/workflows/{CheckDocumenation.yml => CheckDocumentation.yml} (95%) diff --git a/.github/workflows/CheckDocumenation.yml b/.github/workflows/CheckDocumentation.yml similarity index 95% rename from .github/workflows/CheckDocumenation.yml rename to .github/workflows/CheckDocumentation.yml index 24c0d5e..c092b5c 100644 --- a/.github/workflows/CheckDocumenation.yml +++ b/.github/workflows/CheckDocumentation.yml @@ -33,11 +33,11 @@ on: description: 'Source code directory to check.' required: true type: string - fail_below: - description: 'Minimum required documentation coverage level' - required: false - default: 75 - type: string +# fail_below: +# description: 'Minimum required documentation coverage level' +# required: false +# default: 75 +# type: string jobs: DocCoverage: diff --git a/.github/workflows/IntermediateCleanUp.yml b/.github/workflows/IntermediateCleanUp.yml index 1210e11..4699446 100644 --- a/.github/workflows/IntermediateCleanUp.yml +++ b/.github/workflows/IntermediateCleanUp.yml @@ -43,7 +43,7 @@ jobs: if: inputs.sqlite_coverage_artifacts_prefix != '' continue-on-error: true with: - name: ${{ inputs.sqlite_coverage_artifacts_prefix }}-* + name: ${{ inputs.sqlite_coverage_artifacts_prefix }}* token: ${{ secrets.GITHUB_TOKEN }} - name: 🗑️ Delete XML coverage artifacts from matrix jobs @@ -51,5 +51,5 @@ jobs: if: inputs.xml_unittest_artifacts_prefix != '' continue-on-error: true with: - name: ${{ inputs.xml_unittest_artifacts_prefix }}-* + name: ${{ inputs.xml_unittest_artifacts_prefix }}* token: ${{ secrets.GITHUB_TOKEN }}