diff --git a/.gitea/workflows/agent.yml b/.gitea/workflows/agent.yml index 65bf249..9029880 100644 --- a/.gitea/workflows/agent.yml +++ b/.gitea/workflows/agent.yml @@ -1,6 +1,6 @@ name: agent # Reusable AI-agent workflow, shared across repos. A caller repo triggers on issue_comment/issues -# and invokes this via: uses: ffaerber/agents/.gitea/workflows/agent.yml@main (secrets: inherit). +# and invokes this via: uses: gitea/agents/.gitea/workflows/agent.yml@main (secrets: inherit). # The gate + steps run in the caller's event context (github.event.* / github.repository are the caller's). on: workflow_call: @@ -54,7 +54,7 @@ jobs: - name: Fetch shared agent scripts (this repo) uses: actions/checkout@v4 with: - repository: ffaerber/agents + repository: gitea/agents ref: main path: .agents-workflow token: ${{ secrets.GITEA_TOKEN }} diff --git a/.gitea/workflows/ai-agent.yml b/.gitea/workflows/ai-agent.yml index cb40ba4..25879fc 100644 --- a/.gitea/workflows/ai-agent.yml +++ b/.gitea/workflows/ai-agent.yml @@ -1,6 +1,6 @@ name: ai-agent run-name: "ai-agent · #${{ github.event.issue.number }}" # quotes required: bare # starts a YAML comment -# Standard caller for the shared AI-agent workflow (ffaerber/agents). Copy this file VERBATIM into +# Standard caller for the shared AI-agent workflow (gitea/agents). Copy this file VERBATIM into # any repo that should get the agents — it is identical in every repo. All logic + scripts live in # agents/.gitea/workflows/; scripts are fetched from @main at run time. The `jobs.agent` wrapper is # required: a reusable (workflow_call) workflow can only be invoked from a caller job, not top-level. @@ -11,5 +11,5 @@ on: types: [opened] jobs: agent: - uses: ffaerber/agents/.gitea/workflows/agent.yml@main + uses: gitea/agents/.gitea/workflows/agent.yml@main secrets: inherit diff --git a/README.md b/README.md index 3c5312c..d361f23 100644 --- a/README.md +++ b/README.md @@ -37,7 +37,7 @@ it is the source of truth, and `agents` itself uses the same file: ```yaml name: ai-agent run-name: "ai-agent · #${{ github.event.issue.number }}" # quotes required: bare # starts a YAML comment -# Standard caller for the shared AI-agent workflow (ffaerber/agents). Copy this file VERBATIM into +# Standard caller for the shared AI-agent workflow (gitea/agents). Copy this file VERBATIM into # any repo that should get the agents — it is identical in every repo. All logic + scripts live in # agents/.gitea/workflows/; scripts are fetched from @main at run time. The `jobs.agent` wrapper is # required: a reusable (workflow_call) workflow can only be invoked from a caller job, not top-level. @@ -49,7 +49,7 @@ on: types: [opened] jobs: agent: - uses: ffaerber/agents/.gitea/workflows/agent.yml@main + uses: gitea/agents/.gitea/workflows/agent.yml@main secrets: inherit ```