Skip to content

Commit 8d58b83

Browse files
Copilotdsyme
andauthored
Fix cache-memory path in repository-quality-improver workflow
Co-authored-by: dsyme <7204669+dsyme@users.noreply.github.com>
1 parent dd90b04 commit 8d58b83

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

workflows/repository-quality-improver.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -40,18 +40,18 @@ Daily or on-demand, select a focus area for repository improvement, conduct anal
4040

4141
- **Repository**: ${{ github.repository }}
4242
- **Run Date**: $(date +%Y-%m-%d)
43-
- **Cache Location**: `/tmp/gh-aw/cache-memory/focus-areas/`
43+
- **Cache Location**: `/tmp/gh-aw/cache-memory-focus-areas/`
4444
- **Strategy Distribution**: ~60% custom areas, ~30% standard categories, ~10% reuse for consistency
4545

4646
## Phase 0: Setup and Focus Area Selection
4747

4848
### 0.1 Load Focus Area History
4949

50-
Check the cache memory folder `/tmp/gh-aw/cache-memory/focus-areas/` for previous focus area selections:
50+
Check the cache memory folder `/tmp/gh-aw/cache-memory-focus-areas/` for previous focus area selections:
5151

5252
```bash
53-
if [ -f /tmp/gh-aw/cache-memory/focus-areas/history.json ]; then
54-
cat /tmp/gh-aw/cache-memory/focus-areas/history.json
53+
if [ -f /tmp/gh-aw/cache-memory-focus-areas/history.json ]; then
54+
cat /tmp/gh-aw/cache-memory-focus-areas/history.json
5555
fi
5656
```
5757

@@ -367,7 +367,7 @@ The following actionable tasks address the findings above.
367367
After generating the report, update the focus area history:
368368

369369
```bash
370-
mkdir -p /tmp/gh-aw/cache-memory/focus-areas/
370+
mkdir -p /tmp/gh-aw/cache-memory-focus-areas/
371371
# Write updated history.json with the new run appended
372372
```
373373

0 commit comments

Comments
 (0)