From 9ba9c1bb273be0a3973c976d2a874aa68e3dcbac Mon Sep 17 00:00:00 2001 From: Xianming Zhong Date: Mon, 22 Jun 2020 21:53:27 +0800 Subject: [PATCH 1/2] fix stale bot config --- .github/workflows/stale.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml index e70a6c660a..1d9e261e0a 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -16,7 +16,6 @@ jobs: stale-pr-message: 'Hello! :wave: \n\nThis pull request is being automatically marked as stale because it has not been updated in a while. Please confirm that the issue is still present and reproducible. If no updates or new comments are received the pull request will be closed in a few days. \n\nThanks' stale-issue-label: 'status:stale' 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' + only-labels: 'status:more info needed' days-before-stale: 30 days-before-close: 14 From d9dc0107007952b94c61c109caec83eb0ea44aa4 Mon Sep 17 00:00:00 2001 From: Xianming Zhong Date: Tue, 23 Jun 2020 10:44:02 +0800 Subject: [PATCH 2/2] fix multiple lines --- .github/workflows/stale.yml | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml index 1d9e261e0a..1ad2c3a0b0 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -12,8 +12,18 @@ jobs: uses: actions/stale@v3 with: repo-token: ${{ secrets.GITHUB_TOKEN }} - stale-issue-message: 'Hello! :wave: \n\nThis issue is being automatically marked as stale because it has not been updated in a while. Please confirm that the issue is still present and reproducible. If no updates or new comments are received the issue will be closed in a few days. \n\nThanks' - stale-pr-message: 'Hello! :wave: \n\nThis pull request is being automatically marked as stale because it has not been updated in a while. Please confirm that the issue is still present and reproducible. If no updates or new comments are received the pull request will be closed in a few days. \n\nThanks' + stale-issue-message: | + Hello! :wave: + + This issue is being automatically marked as stale because it has not been updated in a while. Please confirm that the issue is still present and reproducible. If no updates or new comments are received the issue will be closed in a few days. + + Thanks. + stale-pr-message: | + Hello! :wave: + + This pull request is being automatically marked as stale because it has not been updated in a while. Please confirm that the issue is still present and reproducible. If no updates or new comments are received the pull request will be closed in a few days. + + Thanks. stale-issue-label: 'status:stale' stale-pr-label: 'status:stale' only-labels: 'status:more info needed'