Skip to content

Commit d9fa110

Browse files
committed
fix claude
1 parent 02110a7 commit d9fa110

File tree

3 files changed

+17
-3
lines changed

3 files changed

+17
-3
lines changed

.github/workflows/claude-code-review.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ jobs:
3030
uses: actions/checkout@v4
3131
with:
3232
fetch-depth: 1
33-
submodules: recursive
3433

3534
- name: Run Claude Code Review
3635
id: claude-review

.github/workflows/claude.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@ jobs:
2929
uses: actions/checkout@v4
3030
with:
3131
fetch-depth: 1
32-
submodules: recursive
3332

3433
- name: Run Claude Code
3534
id: claude

CLAUDE.md

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,22 @@
11
# Millennium Plugin Database
22

3-
This repository contains community plugins for [Millennium](https://steambrew.app/), a Steam client modding platform. Each subdirectory under `plugins/` is an independent plugin.
3+
This repository contains community plugins for [Millennium](https://steambrew.app/), a Steam client modding platform. Each subdirectory under `plugins/` is an independent plugin. Plugins are added as git submodules.
4+
5+
## Cloning Plugin Source for Review
6+
7+
Plugins in this repo are git submodules pointing to external repositories. The submodule files may not be checked out in CI. To review plugin code:
8+
9+
1. Look at the PR diff to find the submodule entry being added or updated (check `.gitmodules` and the submodule path under `plugins/`).
10+
2. Use `git` or `gh` to determine the plugin's source repository URL and commit SHA from the PR diff.
11+
3. Clone the plugin repository yourself and check out the correct commit:
12+
```bash
13+
git clone <repo-url> /tmp/plugin-review
14+
cd /tmp/plugin-review
15+
git checkout <commit-sha>
16+
```
17+
4. Review the plugin source code from there.
18+
19+
Do NOT skip the review because submodule files aren't available locally. Always clone and inspect the actual plugin code.
420

521
## PR Review Instructions
622

0 commit comments

Comments
 (0)