-
-
Notifications
You must be signed in to change notification settings - Fork 20
26 lines (24 loc) · 709 Bytes
/
no-response.yml
File metadata and controls
26 lines (24 loc) · 709 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
name: No Response
on:
workflow_dispatch:
issue_comment:
types: [created]
schedule:
- cron: '5 5 * * *'
jobs:
noResponse:
runs-on: ubuntu-latest
permissions:
issues: write
steps:
- uses: actions/stale@v10
with:
days-before-issue-stale: 7
days-before-issue-close: 3
stale-issue-label: "stale"
only-labels: "waiting-for-response"
labels-to-remove-when-unstale: "waiting-for-response"
stale-issue-message: "This issue will be closed soon because there has been no further activity."
days-before-pr-stale: -1
days-before-pr-close: -1
repo-token: ${{ secrets.GITHUB_TOKEN }}