From 8cf5f8c437dac007fd6083221828c4a344c49538 Mon Sep 17 00:00:00 2001 From: Ben Elan Date: Tue, 25 Jun 2024 17:56:35 -0700 Subject: [PATCH] ci(release-please): limit commits scanned for releases (#9692) ## Summary Setting the last release sha didn't fix the issues. This limits the number of commits release-please scans when trying to find a release. ```sh git rev-list --count @esri/calcite-components@2.9.0^..HEAD # => 137 ``` --- release-please-config.json | 1 + 1 file changed, 1 insertion(+) diff --git a/release-please-config.json b/release-please-config.json index e692ec0c5f8..48767cd31f3 100644 --- a/release-please-config.json +++ b/release-please-config.json @@ -1,6 +1,7 @@ { "$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json", "last-release-sha": "6f7d90935fef0a1fe9bc2570c8b97266a19b128a", + "commit-search-depth": 140, "release-type": "node", "tag-separator": "@", "label": "skip visual snapshots",