Skip to content
Merged
Changes from 1 commit
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
Prev Previous commit
Revert "fix(docs): look up open issues on main builds for Renovate …
…docs (#39801)"

This reverts commit ae46c57.
  • Loading branch information
jamietanna committed Dec 5, 2025
commit 7097e3db53364601940e4d4f8dcbd67ab166948e
15 changes: 1 addition & 14 deletions tools/docs/github-query-items.ts
Original file line number Diff line number Diff line change
Expand Up @@ -78,20 +78,7 @@ export async function getOpenGitHubItems(): Promise<RenovateOpenItems> {
}

if (process.env.CI) {
if (
process.env.GITHUB_REF === 'main' &&
process.env.GITHUB_REPOSITORY !== 'renovatebot/renovatebot.github.io' &&
process.env.GITHUB_REPOSITORY !== 'renovatebot/renovate'
) {
logger.warn(
{
repository: process.env.GITHUB_REPOSITORY,
ref: process.env.GITHUB_REF,
},
"Skipping collection of open GitHub Issues, as we're running CI on a non-HEAD branch of Renovate or its docs site",
);
return result;
}
return result;
}

try {
Expand Down