From 1e85b57c828bff6e3b7e09972bf72011d7b11d79 Mon Sep 17 00:00:00 2001 From: Weston Pace Date: Thu, 30 May 2024 04:42:06 -0700 Subject: [PATCH] ci: don't update package locks if we are not releasing node (#1323) This doesn't actually block a python-only release since this step runs after the version bump has been pushed but it still would be nice for the git job to finish successfully. --- .github/workflows/make-release-commit.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/make-release-commit.yml b/.github/workflows/make-release-commit.yml index 6747f11e5..9a9e2be6f 100644 --- a/.github/workflows/make-release-commit.yml +++ b/.github/workflows/make-release-commit.yml @@ -94,6 +94,6 @@ jobs: branch: ${{ github.ref }} tags: true - uses: ./.github/workflows/update_package_lock - if: ${{ inputs.dry_run }} == "false" + if: ${{ !inputs.dry_run && inputs.other }} with: github_token: ${{ secrets.GITHUB_TOKEN }}