From: edison Date: Fri, 16 Aug 2024 08:01:40 +0000 (+0800) Subject: feat(workflows): auto close issues with `can't reproduce` label (#11631) X-Git-Tag: v3.5.0-beta.3~20 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7ba59c6d4394466f7343bb008f5ef04240056a1b;p=thirdparty%2Fvuejs%2Fcore.git feat(workflows): auto close issues with `can't reproduce` label (#11631) * feat(workflows): auto close issues with 'can't reproduce' label * chore: update --- diff --git a/.github/workflows/close-cant-reproduce-issues.yml b/.github/workflows/close-cant-reproduce-issues.yml new file mode 100644 index 0000000000..8fb48f842d --- /dev/null +++ b/.github/workflows/close-cant-reproduce-issues.yml @@ -0,0 +1,21 @@ +name: Auto close issues with "can't reproduce" label + +on: + schedule: + - cron: '0 0 * * *' + +permissions: + issues: write + +jobs: + close-issues: + if: github.repository == 'vuejs/core' + runs-on: ubuntu-latest + steps: + - name: can't reproduce + uses: actions-cool/issues-helper@v3 + with: + actions: 'close-issues' + token: ${{ secrets.GITHUB_TOKEN }} + labels: "can't reproduce" + inactive-day: 3