Skip to content

Commit

Permalink
fix: reduce number of calls to Github API to avoid hitting rate limits
Browse files Browse the repository at this point in the history
  • Loading branch information
tagoro9 committed Mar 20, 2024
1 parent e7e6720 commit 4ded1ea
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 2 deletions.
11 changes: 10 additions & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,16 @@ export = {
},
},
],
"@semantic-release/github",
[
"@semantic-release/github",
{
failComment: false,
failTitle: false,
labels: false,
releasedLabels: false,
successComment: false,
},
],
[
"@semantic-release/exec",
{
Expand Down
11 changes: 10 additions & 1 deletion test/__snapshots__/_config.test.ts.snap
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,16 @@ exports[`config createPreset creates a preset including the default config 1`] =
},
},
],
"@semantic-release/github",
[
"@semantic-release/github",
{
"failComment": false,
"failTitle": false,
"labels": false,
"releasedLabels": false,
"successComment": false,
},
],
"a",
"b",
[
Expand Down

0 comments on commit 4ded1ea

Please sign in to comment.