Skip to content

Commit

Permalink
ci: increase release-please commit search depth (#11501)
Browse files Browse the repository at this point in the history
## Summary

By default, release-please only checks 500 commits when searching for
the previous release. That number can be increased with the
`commit-search-depth` [manifest] option. Changing the value to 1000 will
be more than enough according to my calculation:

```sh
git rev-list @esri/calcite-components@2.13.2...origin/main | wc -l # => 793
```

[manifest]: https://github.com/googleapis/release-please/blob/90058f543cd82858539fdc7d1b34eabd348edbee/docs/manifest-releaser.md?plain=1#L243-L249
  • Loading branch information
benelan committed Feb 8, 2025
1 parent b3e6777 commit 910d2cf
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions release-please-config.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
"tag-separator": "@",
"draft-pull-request": true,
"include-v-in-tag": false,
"commit-search-depth": 1000,
"changelog-sections": [
{ "type": "feat", "section": "Features" },
{ "type": "fix", "section": "Bug Fixes" },
Expand Down

0 comments on commit 910d2cf

Please sign in to comment.