1name: Close old issues that need feedback
2
3on:
4  schedule:
5    - cron: "0 0 * * *"
6
7jobs:
8  build:
9    if: github.repository_owner == 'php'
10    runs-on: ubuntu-latest
11    steps:
12      - name: Close old issues that need feedback
13        uses: dwieeb/needs-reply@v2
14        with:
15          repo-token: ${{ secrets.GITHUB_TOKEN }}
16          issue-label: "Status: Needs Feedback"
17          days-before-close: 14
18          close-message: "No feedback was provided. The issue is being suspended because we assume that you are no longer experiencing the problem. If this is not the case and you are able to provide the information that was requested earlier, please do so. Thank you."
19