Преглед на файлове

use token for cache controller

Jonathan Kelley преди 1 година
родител
ревизия
8f8cfdf2fa
променени са 1 файла, в които са добавени 2 реда и са изтрити 1 реда
  1. 2 1
      .github/workflows/wipe_cache.yml

+ 2 - 1
.github/workflows/wipe_cache.yml

@@ -13,13 +13,14 @@ jobs:
       - name: Clear cache
         uses: actions/github-script@v6
         with:
+          github-token: ${{ secrets.cache_controller }}
           script: |
             console.log("About to clear")
 
             while (true) {
               const caches = await github.rest.actions.getActionsCacheList({
                 owner: context.repo.owner,
-                repo: context.repo.repo,
+                repo: context.repo.repo
               })
               if (caches.data.actions_caches.length === 0) {
                 break