diff --git a/.github/workflows/misc.yml b/.github/workflows/misc.yml index 212277c3d7..cd994c77ed 100644 --- a/.github/workflows/misc.yml +++ b/.github/workflows/misc.yml @@ -13,7 +13,7 @@ jobs: strategy: fail-fast: false matrix: - tox-environment: [ "docker-tests", "spellcheck", "docs", "generate", "generate_contrib_workflows" ] + tox-environment: [ "docker-tests", "spellcheck", "docs", "generate", "generate_workflows" ] name: ${{ matrix.tox-environment }} runs-on: ubuntu-20.04 steps: @@ -39,5 +39,5 @@ jobs: if: matrix.tox-environment == 'generate' run: git diff --exit-code || (echo 'Generated code is out of date, please run "tox -e generate" and commit the changes in this PR.' && exit 1) - name: Ensure workflows are up to date - if: matrix.tox-environment == 'generate_contrib_workflows' - run: git diff --exit-code || (echo '.github/workflows/tests.yml is out of date, please run "tox -e generate_contrib_workflows" and commit the changes in this PR.' && exit 1) + if: matrix.tox-environment == 'generate_workflows' + run: git diff --exit-code || (echo 'Workflow files are out of date, please run "tox -e generate_workflows" and commit the changes in this PR.' && exit 1)