Skip to content

Commit 44e0c7b

Browse files
committed
Adjust new block from every 8 PRs to 15
1 parent 90cde6e commit 44e0c7b

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/_slack-pr-nag.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -125,8 +125,8 @@ jobs:
125125
126126
currentLines.push(`${author} <${pr.html_url}|${title}> (${reviewers})`);
127127
128-
// Create a new layout block every 8 PRs to comfortably avoid the 3000 char ceiling
129-
if (currentLines.length === 8) {
128+
// Create a new layout block every 15 PRs to comfortably avoid the 3000 char ceiling
129+
if (currentLines.length === 15) {
130130
payload.blocks.push({
131131
type: 'section',
132132
text: { type: 'mrkdwn', text: currentLines.join('\n') }

0 commit comments

Comments
 (0)