From 342b1759f0516e93af66db4821d172b80737e9b5 Mon Sep 17 00:00:00 2001 From: Thomas Eizinger Date: Mon, 7 Nov 2022 15:06:52 +1100 Subject: [PATCH] Rename CI job To reuse this, we rename it to what it actually does: Gathering all crates that are published to crates.io. --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 68f8e9c2441..0eba8107302 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -174,7 +174,7 @@ jobs: test "$ALL_FEATURES" = "$FULL_FEATURE" - gather_crates_for_semver_checks: + gather_published_crates: runs-on: ubuntu-latest outputs: members: ${{ steps.cargo-metadata.outputs.members }} @@ -188,11 +188,11 @@ jobs: semver-check: runs-on: ubuntu-latest - needs: gather_crates_for_semver_checks + needs: gather_published_crates strategy: fail-fast: false matrix: - crate: ${{ fromJSON(needs.gather_crates_for_semver_checks.outputs.members) }} + crate: ${{ fromJSON(needs.gather_published_crates.outputs.members) }} steps: - name: Cancel Previous Runs uses: styfle/cancel-workflow-action@bb6001c4ea612bf59c3abfc4756fbceee4f870c7 # 0.10.0