From 319dc429cabbb57e833c7a082480f4635f87ea7a Mon Sep 17 00:00:00 2001 From: mikeller Date: Tue, 9 Feb 2021 00:20:44 +1300 Subject: [PATCH] Exempt issues and pull requests with a milestone from going stale. --- .github/workflows/stale.yaml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/stale.yaml b/.github/workflows/stale.yaml index 3f3811a02e..74c4c2cd3d 100644 --- a/.github/workflows/stale.yaml +++ b/.github/workflows/stale.yaml @@ -20,12 +20,13 @@ jobs: has not had recent activity. It will be closed if no further activity occurs within a week. close-issue-message: 'Issue closed automatically as inactive.' - exempt-issue-labels: 'BUG,Feature Request,Pinned,Has Milestone' + exempt-issue-labels: 'BUG,Feature Request,Pinned' stale-issue-label: 'Inactive' stale-pr-message: > This pull request has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs within a week. close-pr-message: 'Pull request closed automatically as inactive.' - exempt-pr-labels: 'Pinned,Has Milestone' + exempt-pr-labels: 'Pinned' stale-pr-label: 'Inactive' + exempt-all-milestones: true