Skip to content

Commit 81c7fc3

Browse files
Copilotdsymepelikhan
authored
Fix cache-memory path in repository-quality-improver workflow (#355)
* Initial plan * Fix cache-memory path in repository-quality-improver workflow Co-authored-by: dsyme <7204669+dsyme@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: dsyme <7204669+dsyme@users.noreply.github.com> Co-authored-by: Peli de Halleux <pelikhan@users.noreply.github.com>
1 parent 899b885 commit 81c7fc3

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

@@ -365,7 +365,7 @@ The following actionable tasks address the findings above.
365365
After generating the report, update the focus area history:
366366

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

0 commit comments

Comments
 (0)