|
1 |
| -# Configuration for probot-no-response - https://github.com/probot/no-response |
| 1 | +name: 'No Response' |
2 | 2 |
|
3 |
| -# Number of days of inactivity before an Issue is closed for lack of response |
4 |
| -daysUntilClose: 14 |
| 3 | +# Both `issue_comment` and `scheduled` event types are required for this Action |
| 4 | +# to work properly. |
| 5 | +on: |
| 6 | + issue_comment: |
| 7 | + types: [created] |
| 8 | + schedule: |
| 9 | + # Schedule for five minutes after the hour, every hour |
| 10 | + - cron: '5 * * * *' |
5 | 11 |
|
6 |
| -# Label requiring a response |
7 |
| -responseRequiredLabel: "status: needs more info" |
| 12 | +# By specifying the access of one of the scopes, all of those that are not |
| 13 | +# specified are set to 'none'. |
| 14 | +permissions: |
| 15 | + issues: write |
8 | 16 |
|
9 |
| -# Comment to post when closing an Issue for lack of response. Set to `false` to disable |
10 |
| -closeComment: > |
11 |
| - This issue has been automatically closed because there has been no response |
12 |
| - to our request for more information from the original author. With only the |
13 |
| - information that is currently in the issue, we don't have enough information |
14 |
| - to take action. Please reach out if you have or find the answers we need so |
15 |
| - that we can investigate further. |
| 17 | +jobs: |
| 18 | + stale: |
| 19 | + runs-on: ubuntu-latest |
| 20 | + steps: |
| 21 | + - uses: actions/stale@v8 |
| 22 | + with: |
| 23 | + any-of-labels: 'status: needs more info' |
| 24 | + close-issue-message: > |
| 25 | + Without additional information, we are unfortunately not able to resolve this issue. |
| 26 | + Therefore, we reluctantly closed this issue for now. |
| 27 | + If you run into this issue later, feel free to file a new issue with a reference to this issue. |
| 28 | + Add a description of detailed steps to reproduce, expected and current behaviour, logs and the output of 'flutter doctor -v'. |
| 29 | + Thanks for your contribution. |
| 30 | + days-before-close: 14 |
0 commit comments