Skip to content

Commit

Permalink
Add no-response workflow to close stale issues (#3152)
Browse files Browse the repository at this point in the history
  • Loading branch information
nirinchev committed Jan 5, 2023
1 parent 2a6d23c commit 5496923
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/no-response.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# NOTE: This is a common file that is overwritten by realm/ci-actions sync service
# and should only be modified in that repository.

name: No Response

# Both `issue_comment` and `scheduled` event types are required for this Action
# to work properly.
on:
issue_comment:
types: [created]
schedule:
# Schedule for five minutes after the hour, every hour
- cron: '5 * * * *'

jobs:
noResponse:
runs-on: ubuntu-latest
steps:
- uses: lee-dohm/no-response@66174372c9c5576aa8a4287e33653f2fdd12d517
with:
token: ${{ github.token }}
responseRequiredLabel: More-information-needed

0 comments on commit 5496923

Please sign in to comment.