Skip to content

Commit 9d3679c

Browse files
committed
Fix workflow configuration issues
Adds write permissions for review submission and fixes temp directory paths to use GitHub Actions runner.temp instead of placeholder paths.
1 parent ca1fc77 commit 9d3679c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
runs-on: ubuntu-latest
1919
permissions:
2020
contents: read
21-
pull-requests: read
21+
pull-requests: write
2222
issues: read
2323
id-token: write
2424

.github/workflows/claude.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,12 +68,12 @@ jobs:
6868
- The task context above contains all available information
6969
- Explore 2-3 different approaches with pros/cons
7070
- Design the solution covering: architecture, components, data flow, error handling, testing
71-
- Save design to `/tmp/claude-plans/YYYY-MM-DD-<topic>-design.md` (temporary, not committed)
71+
- Save design to `${{ runner.temp }}/design.md` (temporary, not committed)
7272
7373
2. Use the writing-plans skill (`superpowers:writing-plans`) to:
7474
- Create detailed, bite-sized implementation plan
7575
- Include exact file paths, complete code examples, verification steps
76-
- Save plan to `/tmp/claude-plans/YYYY-MM-DD-<feature>-implementation.md` (temporary, not committed)
76+
- Save plan to `${{ runner.temp }}/implementation.md` (temporary, not committed)
7777
7878
3. Execute the complete implementation:
7979
- Follow TDD for all code changes (write test first, watch fail, implement, verify pass)

0 commit comments

Comments
 (0)