...
1name: "Close Stale Issues"
2on:
3 workflow_dispatch:
4 schedule:
5 - cron: "0 0 * * *"
6
7jobs:
8 stale:
9 if: github.repository_owner == 'ory'
10 runs-on: ubuntu-latest
11 steps:
12 - uses: actions/stale@v3
13 with:
14 repo-token: ${{ secrets.GITHUB_TOKEN }}
15 stale-issue-message: |
16 Thank you for opening this issue. It appears that the request for more information (e.g. providing the software version, providing logs, ...) has not yet been completed. Therefore this issue will be automatically
17 closed in 7 days, assuming that the issue has been resolved.
18 stale-pr-message: |
19 Thank you for opening this pull request. It appears that a request for e.g. information has not yet been completed. Therefore this issue will be automatically
20 closed in 7 days, assuming that the proposed change is no longer required or has otherwise been resolved.
21 stale-issue-label: 'stale'
22 stale-pr-label: 'stale'
23 only-labels: 'needs more info'
24 days-before-stale: 7
25 days-before-close: 7
View as plain text