From 3ae5eb00b6cee2c4a9f3ee049bfda39d20335312 Mon Sep 17 00:00:00 2001 From: Maksym Vlasov Date: Thu, 14 Oct 2021 14:23:24 +0300 Subject: [PATCH] chore: Do not mark issues and PR's in milestone as stale (#241) --- .github/workflows/stale-actions.yaml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/stale-actions.yaml b/.github/workflows/stale-actions.yaml index f769925..d2a5f6b 100644 --- a/.github/workflows/stale-actions.yaml +++ b/.github/workflows/stale-actions.yaml @@ -7,7 +7,7 @@ jobs: stale: runs-on: ubuntu-latest steps: - - uses: actions/stale@v3 + - uses: actions/stale@v4 with: repo-token: ${{ secrets.GITHUB_TOKEN }} # Staling issues and PR's @@ -20,9 +20,10 @@ jobs: stale-pr-message: | This PR has been automatically marked as stale because it has been open 30 days with no activity. Remove stale label or comment or this PR will be closed in 10 days - # Not stale if have this labels + # Not stale if have this labels or part of milestone exempt-issue-labels: bug,wip,on-hold exempt-pr-labels: bug,wip,on-hold + exempt-all-milestones: true # Close issue operations # Label will be automatically removed if the issues are no longer closed nor locked. days-before-close: 10