We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 530c136 commit 3ddfca7Copy full SHA for 3ddfca7
.github/workflows/code_reviewer.yml
@@ -13,6 +13,25 @@ jobs:
13
- name: Checkout Repo
14
uses: actions/checkout@v3
15
16
+ - name: Clear cache
17
+ uses: actions/github-script@v6
18
+ with:
19
+ script: |
20
+ console.log("About to clear")
21
+ const caches = await github.rest.actions.getActionsCacheList({
22
+ owner: context.repo.owner,
23
+ repo: context.repo.repo,
24
+ })
25
+ for (const cache of caches.data.actions_caches) {
26
+ console.log(cache)
27
+ github.rest.actions.deleteActionsCacheById({
28
29
30
+ cache_id: cache.id,
31
32
+ }
33
+ console.log("Clear completed")
34
+
35
- name: TC AI PR Reviewer
36
uses: topcoder-platform/tc-ai-pr-reviewer@master
37
with:
0 commit comments