From ba28bfb15d2fd29f5d881aec08f91eb04c8f53ca Mon Sep 17 00:00:00 2001 From: Maksym Pavlenko Date: Thu, 28 Aug 2025 16:19:58 -0700 Subject: [PATCH] Fix stale job configuration Signed-off-by: Maksym Pavlenko --- .github/workflows/stale.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml index 271e6b3..91bd53c 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -13,6 +13,8 @@ jobs: runs-on: ubuntu-latest permissions: + actions: write + contents: write # only for delete-branch option issues: write pull-requests: write @@ -33,4 +35,4 @@ jobs: # Comment on the staled PRs while closed close-pr-message: 'This PR was closed because it has been stalled for 7 days with no activity.' # Enable dry-run when changing this file from a PR. - debug-only: github.event_name == 'pull_request' + debug-only: ${{ github.event_name == 'pull_request' }}