Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ jobs:
\.github/workflows/markdownlint*.yml
\.github/workflows/refresh-manifests.yml
\.github/workflows/apply-test-attributes.yml
\.github/workflows/pr-review-needed.yml

- id: compute_version_suffix
name: Compute version suffix for PRs
Expand Down
11 changes: 10 additions & 1 deletion .github/workflows/pr-review-needed.yml
Original file line number Diff line number Diff line change
Expand Up @@ -465,7 +465,16 @@ jobs:
tableContent += '### Community Contributions\n\n';
tableContent += generatePRTable(communityPRs, 'No community PRs currently need review.');

tableContent += '\n_This list is automatically updated every hour._';
tableContent += '\n_This list is automatically updated every 2 hours._';

// If this is a manual workflow_dispatch run, just output the markdown to console
if (context.eventName === 'workflow_dispatch') {
console.log('=== Manual workflow run - Issue body (not updating issue) ===');
console.log(tableContent);
console.log('=== End of issue body ===');
console.log('Found ' + prsNeedingReview.length + ' PRs needing review (issue not updated for manual runs)');
return;
}

// Get the current issue
const { data: issue } = await github.rest.issues.get({
Expand Down