From d9423780709a9f0b75f077a9f53697e46a49a36a Mon Sep 17 00:00:00 2001 From: KC Berg Date: Wed, 9 Jul 2025 07:22:09 -0600 Subject: [PATCH 1/2] ci: remove 'needs: test' from tag-version and bump-version jobs --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cb2607b..b794802 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -46,7 +46,7 @@ jobs: tag-version: if: needs.check-bumpver.outputs.should_run == 'true' && github.ref == 'refs/heads/main' && github.event_name == 'push' - needs: [test, check-bumpver] + needs: check-bumpver runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 @@ -80,7 +80,7 @@ jobs: bump-version: if: needs.check-bumpver.outputs.should_run == 'true' && github.ref == 'refs/heads/main' && github.event_name == 'push' - needs: [test, tag-version, check-bumpver] + needs: check-bumpver runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 From 74a32a2298e3706481d64d8d06f635018f7a06dd Mon Sep 17 00:00:00 2001 From: KC Berg Date: Wed, 9 Jul 2025 07:22:42 -0600 Subject: [PATCH 2/2] ci: make bump-version depend on tag-version job --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b794802..7ab6c39 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -80,7 +80,7 @@ jobs: bump-version: if: needs.check-bumpver.outputs.should_run == 'true' && github.ref == 'refs/heads/main' && github.event_name == 'push' - needs: check-bumpver + needs: [check-bumpver, tag-version] runs-on: ubuntu-latest steps: - uses: actions/checkout@v4