From ec5819b882813d7f55d91f829bd586e640891d20 Mon Sep 17 00:00:00 2001 From: Luiz Augusto von Dentz Date: Thu, 6 Nov 2025 11:22:42 -0500 Subject: [PATCH] github/stale: Fix not removing stale tag when an issue is updated In order for stale action to automatically remove stale label from issues it requires the following permissions: issues: write and pull-requests: write https://github.com/actions/stale?tab=readme-ov-file#remove-stale-when-updated --- .github/workflows/stale.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml index c6d6134d9..bf2c20226 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -6,6 +6,9 @@ on: jobs: stale: runs-on: ubuntu-latest + permissions: + issues: write + pull-requests: write steps: - uses: actions/stale@v9 with: -- 2.47.3