()
| 136 | return True |
| 137 | |
| 138 | def main(): |
| 139 | github_token = os.getenv('GITHUB_TOKEN') |
| 140 | if not github_token: |
| 141 | print("❌ GITHUB_TOKEN environment variable required") |
| 142 | sys.exit(1) |
| 143 | |
| 144 | print("🚀 Starting Kubernetes Tools Discovery...") |
| 145 | |
| 146 | discovery = KubeToolsDiscovery(github_token) |
| 147 | tools = discovery.search_new_tools(days_back=7) |
| 148 | |
| 149 | if discovery.save_results(tools): |
| 150 | print(f"✅ Discovery complete! Found {len(tools)} tools") |
| 151 | else: |
| 152 | print("😴 No new tools discovered today") |
| 153 | |
| 154 | if __name__ == "__main__": |
| 155 | main() |
no test coverage detected