You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If this fails, the user likely needs org-level project scopes:
147
+
```bash
148
+
gh auth refresh -s read:project,project
149
+
```
150
+
151
+
**6c: Test `make run-review` prerequisites**
152
+
153
+
```bash
154
+
# Verify gh-copilot-review works
155
+
gh copilot-review --help
156
+
```
157
+
158
+
**6d: Test claude CLI**
159
+
160
+
```bash
161
+
claude --version
162
+
```
163
+
164
+
If all pipeline checks pass, explain the project-based contribution pipeline:
165
+
166
+
> **Setup complete!** All tools installed and verified.
167
+
>
168
+
> ## How the Project Pipeline Works
169
+
>
170
+
> This project uses a [GitHub Project board](https://github.com/orgs/CodingThrust/projects/8/views/1) to track issues through an automated pipeline. Issues flow through these columns:
171
+
>
172
+
> ```
173
+
> Ready → In Progress → review-agentic → In Review → Done
174
+
> ```
175
+
>
176
+
> Two `make` commands drive this pipeline:
177
+
>
178
+
> ### `make run-pipeline` (issue → PR)
179
+
> Picks the next **Ready** issue, moves it to **In Progress**, implements it (using `/issue-to-pr` → `/add-model` or `/add-rule`), creates a PR, then moves it to **review-agentic**.
180
+
>
181
+
> ### `make run-review` (PR → review)
182
+
> Picks the next **review-agentic** PR, waits for Copilot review, fixes comments and CI failures, runs agentic feature tests, then moves it to **In Review** for human approval.
183
+
>
184
+
> ### Targeting specific items
185
+
> - `make run-pipeline N=42` — process issue #42
186
+
> - `make run-review N=570` — process PR #570
187
+
>
188
+
> ### Available skills for manual work
189
+
> You can also invoke individual skills directly:
190
+
> - `/issue-to-pr 42` — convert a specific issue into a PR
191
+
> - `/add-model` — interactively add a new problem model
192
+
> - `/add-rule` — interactively add a new reduction rule
193
+
> - `/fix-pr` — fix review comments and CI on the current PR
0 commit comments