From 86409c335775a0ad45b93049056d1223435cc1fe Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Fri, 7 Aug 2026 20:25:09 +0000 Subject: [PATCH] Stop scanning wp-cli/wp-cli.github.com for contributors and release notes The website repository is no longer maintained, so it never has an open milestone to read from. Both bundle-wide code paths skipped it harmlessly at runtime, but it still cost an API call per invocation and implied the repo was part of a release. Co-Authored-By: Claude Opus 5 Claude-Session: https://claude.ai/code/session_01Xw2XwqE3C4cGGZ6EbS8p3V --- .maintenance/src/Contrib_List_Command.php | 1 - .maintenance/src/Release_Notes_Command.php | 1 - 2 files changed, 2 deletions(-) diff --git a/.maintenance/src/Contrib_List_Command.php b/.maintenance/src/Contrib_List_Command.php index d62fb28..5fd8147 100644 --- a/.maintenance/src/Contrib_List_Command.php +++ b/.maintenance/src/Contrib_List_Command.php @@ -52,7 +52,6 @@ public function __invoke( $args, $assoc_args ) { 'wp-cli/wp-cli-bundle', 'wp-cli/wp-cli', 'wp-cli/handbook', - 'wp-cli/wp-cli.github.com', ]; } diff --git a/.maintenance/src/Release_Notes_Command.php b/.maintenance/src/Release_Notes_Command.php index 8565659..1b92f6e 100644 --- a/.maintenance/src/Release_Notes_Command.php +++ b/.maintenance/src/Release_Notes_Command.php @@ -72,7 +72,6 @@ private function get_bundle_release_notes( $source, $format ) { 'wp-cli/wp-cli-bundle', 'wp-cli/wp-cli', 'wp-cli/handbook', - 'wp-cli/wp-cli.github.com', ) as $repo ) { $milestones = GitHub::get_project_milestones( $repo );