From 5b08fc4ac7ecc896efa37952645ea578a3609fc2 Mon Sep 17 00:00:00 2001 From: Jay Date: Thu, 18 Jun 2020 08:58:03 +0200 Subject: [PATCH] Add days and change name to work (#3035) --- .github/workflows/stale.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml index c5a90a8..e70a6c6 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -5,10 +5,10 @@ on: - cron: '0 0 * * 1' jobs: - auto_close_issues: + stale: runs-on: ubuntu-latest steps: - - name: Automatically close stale issues/prs + - name: Close Stale Issues uses: actions/stale@v3 with: repo-token: ${{ secrets.GITHUB_TOKEN }} @@ -18,3 +18,5 @@ jobs: stale-pr-label: 'status:stale' exempt-issue-labels: 'beginner friendly,component:adapter,component:cookies,component:encoding,component:exceptions,component:headers,component:progress events,component:proxy,component:timeout,component:typescript,priority:high,priority:low,status:more info needed,status:possible bug,status:review,status:wont fix,status:work in progress,type:confirmed bug,type:documentation,type:enhancement,type:feature,type:future proposal,type:question,type:regression' exempt-pr-labels: 'beginner friendly,component:adapter,component:cookies,component:encoding,component:exceptions,component:headers,component:progress events,component:proxy,component:timeout,component:typescript,priority:high,priority:low,status:more info needed,status:possible bug,status:review,status:wont fix,status:work in progress,type:confirmed bug,type:documentation,type:enhancement,type:feature,type:future proposal,type:question,type:regression' + days-before-stale: 30 + days-before-close: 14