diff --git a/.github/workflows/review.agent.lock.yml b/.github/workflows/review.agent.lock.yml new file mode 100644 index 000000000..edec9d95a --- /dev/null +++ b/.github/workflows/review.agent.lock.yml @@ -0,0 +1,26 @@ +# Stub workflow — enables discovery of review.agent.lock.yml so that +# `gh workflow run review.agent.lock.yml --ref ` works. +# The real workflow lives on the feature branch; --ref executes THAT version. +# This stub is safe to leave on main — it does nothing on its own. +# +# Once PR #118 (feat/expert-review-workflow) merges, this stub is replaced +# by the real compiled workflow and can be removed. + +name: "Expert Code Review" + +on: + workflow_dispatch: + inputs: + pr_number: + description: 'PR number to review' + required: true + type: number + +permissions: {} + +jobs: + stub: + if: false + runs-on: ubuntu-latest + steps: + - run: echo "Stub for discovery only. Use --ref to run the real workflow."