From 05f82a27f18656923df8604bab2efba7c5f5621f Mon Sep 17 00:00:00 2001 From: Guilherme Branco Stracini Date: Tue, 30 Jul 2024 21:11:49 +0100 Subject: [PATCH] Update stale-issues.yml (#21) --- .github/workflows/stale-issues.yml | 19 +++++++++++-------- 1 file changed, 11 insertions(+), 8 deletions(-) diff --git a/.github/workflows/stale-issues.yml b/.github/workflows/stale-issues.yml index 8964a3d..67fd7c3 100644 --- a/.github/workflows/stale-issues.yml +++ b/.github/workflows/stale-issues.yml @@ -1,16 +1,19 @@ name: "Close stale issues" on: - workflow_dispatch: schedule: - - cron: "0 0 * * *" + - cron: "0 0 * * *" jobs: stale: runs-on: ubuntu-latest + permissions: + issues: write + pull-requests: write steps: - - uses: actions/stale@v8 - with: - repo-token: ${{ secrets.GITHUB_TOKEN }} - stale-issue-message: 'Esta vaga encontra-se há um bom tempo sem novas interações. Se ainda estiver aberta, faça um comentário, caso contrario, a fecharemos automaticamente em 5 dias.' - days-before-stale: 60 - days-before-close: 5 + - uses: actions/stale@v9 + with: + repo-token: ${{ secrets.GITHUB_TOKEN }} + stale-issue-message: 'Esta vaga encontra-se há um bom tempo sem novas interações. Se ainda estiver aberta, faça um comentário, caso contrario, a fecharemos automaticamente em 5 dias.' + days-before-stale: 60 + days-before-close: 5 + ascending: true