From 7f6a8082626ee107787cf0269dd5a933dcf98e49 Mon Sep 17 00:00:00 2001 From: Casey Lee Date: Mon, 18 Jan 2021 10:41:49 -0800 Subject: [PATCH] update stale labels to stop closing issues that are NOT stale --- .github/workflows/stale.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml index b909bb9e..fca91785 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -13,10 +13,10 @@ jobs: repo-token: ${{ secrets.GITHUB_TOKEN }} stale-issue-message: 'Issue is stale and will be closed in 14 days unless there is new activity' stale-pr-message: 'PR is stale and will be closed in 14 days unless there is new activity' - stale-issue-label: 'meta/stale' - exempt-issue-label: 'meta/stale-exempt' - stale-pr-label: 'meta/stale' - exempt-pr-label: 'meta/stale-exempt' + stale-issue-label: 'stale' + exempt-issue-labels: 'stale-exempt' + stale-pr-label: 'stale' + exempt-pr-labels: 'stale-exempt' remove-stale-when-updated: 'True' operations-per-run: 500 days-before-stale: 30