Skip to content

Commit e95d6e1

Browse files
committed
Updates on docs
1 parent d18c0cd commit e95d6e1

1 file changed

Lines changed: 22 additions & 0 deletions

File tree

.github/workflows/no-response.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# Automatically closes issues if a response was not received for requested information
2+
# https://github.com/lee-dohm/no-response
3+
4+
name: no-response
5+
6+
# Both `issue_comment` and `scheduled` event types are required for this Action
7+
# to work properly.
8+
on:
9+
issue_comment:
10+
types: [created]
11+
schedule:
12+
# Once a day, at 12:15 UTC
13+
- cron: '15 12 * * *'
14+
15+
jobs:
16+
noResponse:
17+
runs-on: ubuntu-20.04
18+
steps:
19+
- uses: lee-dohm/no-response@v0.5.0
20+
with:
21+
token: ${{ secrets.GITHUB_TOKEN }}
22+
responseRequiredLabel: "status: waiting-for-feedback"

0 commit comments

Comments
 (0)