Update stale references after the GitHub repo rename - #33
Merged
Conversation
…nities The repo moved from adab-tech/OpportunityFinder to adab-tech/globalopportunities (the old URL still redirects, so nothing was broken, but docs/scripts pointed at the old path). Also updates the RSS scraper's outbound User-Agent string, which still identified as "OpportunityFinder" and linked the old repo URL to external feeds. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_019Umy9bW14TMbzW2QD7eLt3
Deploying with
|
| Status | Name | Latest Commit | Preview URL | Updated (UTC) |
|---|---|---|---|---|
| ✅ Deployment successful! View logs |
opportunityfinder | bbf6947 | Commit Preview URL Branch Preview URL |
Sep 01 2026, 05:24 AM |
There was a problem hiding this comment.
🟢 Approval recommended
The changes are limited to reference string updates and a User-Agent header string, with no functional behavior changes beyond outbound identification.
Pull request overview
Updates hardcoded repository references after the rename from adab-tech/OpportunityFinder to adab-tech/globalopportunities, including documentation, scripts, and the RSS ingest scraper’s outbound User-Agent header URL.
Changes:
- Updated repo references in deployment/docs and secrets documentation.
- Updated the secrets sync PowerShell script example to target the new repo path.
- Updated RSS ingest
User-Agentto identifyGlobalOpportunities/1.0and link the new GitHub repo URL.
File summaries
| File | Description |
|---|---|
| scripts/sync-github-secrets.ps1 | Updates example usage to use the renamed GitHub repo path. |
| docs/DEPLOY-RENDER.md | Updates Render deployment instructions to reference the new repo. |
| docs/DEPLOY-CLOUDFLARE-WORKERS.md | Updates Cloudflare Workers deployment instructions to reference the new repo. |
| backend/app/scrapers/rss_ingest.py | Updates outbound RSS polling User-Agent header to use the new project/repo identity. |
| .github/SECRETS.md | Updates secrets documentation and gh secret set examples to use the new repo. |
| .claude/skills/opportunityfinder-dev/SKILL.md | Updates skill documentation repo reference to the renamed repository. |
Review details
- Files reviewed: 6/6 changed files
- Comments generated: 0
- Review effort level: Lite
💡 Add a code-review agent skill or configure MCP servers for context-aware, tailored reviews. Learn more in the docs.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
The repo moved from
adab-tech/OpportunityFindertoadab-tech/globalopportunities(confirmed via the GitHub API — old URL still redirects, so nothing was actually broken). This just cleans up the docs/scripts that hardcoded the old path:.github/SECRETS.md,docs/DEPLOY-RENDER.md,docs/DEPLOY-CLOUDFLARE-WORKERS.md,scripts/sync-github-secrets.ps1,.claude/skills/opportunityfinder-dev/SKILL.md— updated repo references.backend/app/scrapers/rss_ingest.py— the RSS scraper's outboundUser-Agentheader still identified asOpportunityFinder/1.0and linked the old repo URL to every external feed it polls. Updated toGlobalOpportunities/1.0with the new URL.No behavior change beyond that outbound header string; no test pins its exact value.
Test plan
grep-confirmed no remaining references to the old repo path anywhere in the tree.ruff check .— both pass.Generated by Claude Code