close-cant-reproduce-issues.yml 456 B

123456789101112131415161718192021
  1. name: Auto close issues with "can't reproduce" label
  2. on:
  3. schedule:
  4. - cron: '0 0 * * *'
  5. permissions:
  6. issues: write
  7. jobs:
  8. close-issues:
  9. if: github.repository == 'vuejs/core'
  10. runs-on: ubuntu-latest
  11. steps:
  12. - name: can't reproduce
  13. uses: actions-cool/issues-helper@v3
  14. with:
  15. actions: 'close-issues'
  16. token: ${{ secrets.GITHUB_TOKEN }}
  17. labels: "can't reproduce"
  18. inactive-day: 3