summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIlya Mashchenko <ilya@netdata.cloud>2022-03-11 13:21:45 +0200
committerGitHub <noreply@github.com>2022-03-11 13:21:45 +0200
commit091dd8c38f3b461b7c96f217b7db7af25b29de34 (patch)
treecb7aadaec0f01842b86c08ea3a379fe8527d3b04
parent4566c0835e99d1b00542ddbc1600450eb61a6a70 (diff)
fix(ci/release): limit the number of issues to fetch from GitHub when generating changelog (#12371)
-rw-r--r--.github/workflows/release.yml2
1 files changed, 2 insertions, 0 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index 3dccb5b25f..8701f99dbf 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -54,6 +54,7 @@ jobs:
token: ${{ secrets.NETDATABOT_GITHUB_TOKEN }}
unreleasedLabel: "**Next release**"
verbose: true
+ maxIssues: 500
- name: Generate Release Changelog
id: release-changelog
if: steps.target.outputs.run == 'true' && steps.target.outputs.type != 'nightly'
@@ -67,6 +68,7 @@ jobs:
token: ${{ secrets.NETDATABOT_GITHUB_TOKEN }}
unreleasedLabel: "**Next release**"
verbose: true
+ maxIssues: 500
- name: Commit Changes
id: commit
if: steps.target.outputs.run == 'true'