From fbff3a3ed93703f308e5cc97b3ee213eec9431a7 Mon Sep 17 00:00:00 2001 From: Jan <33495614+Jojo-1000@users.noreply.github.com> Date: Thu, 23 May 2024 23:29:09 +0200 Subject: [PATCH] Fix stale action permissions Action write permissions is required to update the cache (see https://github.com/actions/stale/issues/1133) --- .github/workflows/stale.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml index d3762da2e4..2ec105e2ac 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -8,6 +8,7 @@ jobs: runs-on: ubuntu-latest permissions: issues: write + actions: write steps: - uses: actions/stale@v9 with: @@ -22,4 +23,4 @@ jobs: only-labels: "pending user feedback" exempt-issue-labels: "bug,enhancement,good first issue,backend enhancement,backend issue,backup corruption,bounty,bugreport attached,core logic,docker,filters,help wanted,linux,localization,MacOS,mono,performance issue,reproduced,server side,ssl/tls issue,Synology,tests,translation,UI,windows" repo-token: ${{ secrets.GITHUB_TOKEN }} - operations-per-run: 60 + operations-per-run: 500