Skip to content

build(deps-dev): Bump cspell from 8.6.0 to 8.10.0 #3566

build(deps-dev): Bump cspell from 8.6.0 to 8.10.0

build(deps-dev): Bump cspell from 8.6.0 to 8.10.0 #3566

Workflow file for this run

# No Response
#
# Close issues that don't have enough information to be actionable.
#
# References:
#
# - https://docs.github.com/actions/using-workflows/events-that-trigger-workflows#issue_comment
# - https://docs.github.com/actions/using-workflows/events-that-trigger-workflows#schedule
# - https://docs.github.com/webhooks-and-events/webhooks/webhook-events-and-payloads#issue_comment
# - https://github.com/actions/create-github-app-token
# - https://github.com/lee-dohm/no-response
---
name: no-response
on:
issue_comment:
types:
- created
schedule:
# five minutes after the hour, every hour
- cron: 5 * * * *
jobs:
no-response:
runs-on: ubuntu-latest
steps:
- id: bot-token
name: Get bot token
uses: actions/create-github-app-token@v1.9.3
with:
app-id: ${{ secrets.BOT_APP_ID }}
private-key: ${{ secrets.BOT_PRIVATE_KEY }}
- id: close-issues
name: Closes issues missing actionable info
uses: lee-dohm/no-response@v0.5.0
with:
closeComment: |
This issue has been automatically closed because there has been no response to our
request for more information from the original author. With only the information that is
currently available, there isn't enough information to take action. Please reach out if
you have or find the answers needed so next steps, if any, can be determined.
daysUntilClose: 14
responseRequiredLabel: status:awaiting-answers
token: ${{ steps.bot-token.outputs.token }}