Skip to content

Commit 68956ce

Browse files
rayketchamclaude
andcommitted
Migrate repo to rayketcham-lab org, update all references
Repo transferred from rayketcham/project-forge to rayketcham-lab/project-forge. Updated CI workflow, test fixtures, and config defaults. 148 tests passing. Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 898aee0 commit 68956ce

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
- uses: actions/checkout@v4
4242
- name: Check issue-to-test ratio
4343
env:
44-
GH_REPO: rayketcham/project-forge
44+
GH_REPO: rayketcham-lab/project-forge
4545
run: |
4646
ISSUE_COUNT=$(gh issue list -R "$GH_REPO" --state all --label feature --json number -q 'length' 2>/dev/null || echo 0)
4747
TEST_COUNT=$(python3 -m pytest tests/ --collect-only -q 2>/dev/null | tail -1 | grep -oP '\d+(?= test)' || echo 0)

tests/test_cron_runner.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ async def test_generate_and_store_records_failure(mock_anthropic_cls, db):
120120
@patch("project_forge.cron.scheduler.create_label")
121121
@pytest.mark.asyncio
122122
async def test_create_github_issue_for_idea(mock_label, mock_issue):
123-
mock_issue.return_value = "https://github.com/rayketcham/project-forge/issues/1"
123+
mock_issue.return_value = "https://github.com/rayketcham-lab/project-forge/issues/1"
124124
idea = _make_idea()
125125

126126
url = await create_github_issue_for_idea(idea)

0 commit comments

Comments
 (0)