Skip to content

Commit

Permalink
chore: add workflow to close issues with 'User Input' labels after 7 …
Browse files Browse the repository at this point in the history
…days (#912)

Signed-off-by: Stefan Dej <[email protected]>
  • Loading branch information
meteyou authored Jun 16, 2022
1 parent de911d2 commit 308518a
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/issues-no-response.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: No Response

# Both `issue_comment` and `scheduled` event types are required for this Action
# to work properly.
on:
issue_comment:
types: [created]
schedule:
- cron: '5 * * * *'

jobs:
noResponse:
runs-on: ubuntu-latest
steps:
- uses: lee-dohm/[email protected]
with:
token: ${{ github.token }}
daysUntilClose: 7
responseRequiredLabel: ❔ User Input

0 comments on commit 308518a

Please sign in to comment.