fix: no response action not working
This commit is contained in:
parent
910fb19f17
commit
a76e0f2544
1 changed files with 6 additions and 3 deletions
9
.github/workflows/no-response.yml
vendored
9
.github/workflows/no-response.yml
vendored
|
@ -1,19 +1,22 @@
|
|||
name: No Response
|
||||
|
||||
# Both `issue_comment` and `scheduled` event types are required for this Action
|
||||
# to work properly.
|
||||
on:
|
||||
issues:
|
||||
types: [closed]
|
||||
issue_comment:
|
||||
types: [created]
|
||||
schedule:
|
||||
# Schedule for five minutes after the hour, every hour
|
||||
- cron: '5 * * * *'
|
||||
|
||||
permissions:
|
||||
issues: write
|
||||
|
||||
jobs:
|
||||
noResponse:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: lee-dohm/no-response@v0.5.0
|
||||
- uses: MBilalShafi/no-response-add-label@v0.0.6
|
||||
with:
|
||||
token: ${{ github.token }}
|
||||
daysUntilClose: 14
|
||||
|
|
Loading…
Reference in a new issue