Skip to content

Commit 14ed51c

Browse files
authored
Merge pull request docker#1489 from derekmisler/i-want-to-test-the-pr-reviewer
fix: correct memory database cache path for pr-reviewer GHA
2 parents 51e91a2 + afd43fc commit 14ed51c

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/agents/pr-review-feedback.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ agents:
1818
1919
toolsets:
2020
- type: memory
21-
path: .github/pr-review-memory.db
21+
path: pr-review-memory.db
2222
- type: shell
2323

2424
permissions:

.github/workflows/agents/pr-review.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ agents:
7676
tools: [read_file, read_multiple_files, list_directory, directory_tree]
7777
- type: shell
7878
- type: memory
79-
path: .github/pr-review-memory.db
79+
path: pr-review-memory.db
8080

8181
drafter:
8282
model: sonnet

.github/workflows/pr-review.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555
if: steps.check.outputs.is_agent_comment == 'true'
5656
uses: actions/cache@8b402f58fbc84540c8b491a91e594a4576fec3d7
5757
with:
58-
path: .github/pr-review-memory.db
58+
path: .github/workflows/agents/pr-review-memory.db
5959
key: pr-review-memory-${{ github.repository }}
6060
restore-keys: |
6161
pr-review-memory-${{ github.repository }}
@@ -89,7 +89,7 @@ jobs:
8989
if: steps.check.outputs.is_agent_comment == 'true'
9090
uses: actions/cache/save@v4
9191
with:
92-
path: .github/pr-review-memory.db
92+
path: .github/workflows/agents/pr-review-memory.db
9393
key: pr-review-memory-${{ github.repository }}
9494

9595
# ==========================================================================
@@ -131,7 +131,7 @@ jobs:
131131
- name: Restore reviewer memory database
132132
uses: actions/cache@8b402f58fbc84540c8b491a91e594a4576fec3d7
133133
with:
134-
path: .github/pr-review-memory.db
134+
path: .github/workflows/agents/pr-review-memory.db
135135
key: pr-review-memory-${{ github.repository }}
136136
restore-keys: |
137137
pr-review-memory-${{ github.repository }}
@@ -203,7 +203,7 @@ jobs:
203203
if: always()
204204
uses: actions/cache/save@v4
205205
with:
206-
path: .github/pr-review-memory.db
206+
path: .github/workflows/agents/pr-review-memory.db
207207
key: pr-review-memory-${{ github.repository }}
208208

209209
- name: Add completion reaction

0 commit comments

Comments
 (0)