-
-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
10 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,34 +4,21 @@ on: | |
issue_comment: | ||
types: [created] | ||
schedule: | ||
# Schedule for every Monday at 12am | ||
- cron: "0 0 * * 1" | ||
|
||
permissions: | ||
issues: write | ||
pull-requests: write | ||
# Schedule for five minutes after the hour, every hour | ||
- cron: '5 * * * *' | ||
|
||
jobs: | ||
noResponse: | ||
if: github.repository == 'ftonato/nope-validator' | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: 🥺 Handle Ghosting | ||
uses: actions/stale@v5 | ||
uses: lee-dohm/[email protected] | ||
with: | ||
close-issue-message: > | ||
This issue has been automatically closed because we haven't received a | ||
response from the original author 🙈. This automation helps keep the issue | ||
tracker clean from issues that are unactionable. Please reach out if you | ||
have more information for us! 🙂 | ||
close-pr-message: > | ||
This PR has been automatically closed because we haven't received a | ||
response from the original author 🙈. This automation helps keep the issue | ||
tracker clean from PRs that are unactionable. Please reach out if you | ||
have more information for us! 🙂 | ||
days-before-close: 10 | ||
# don't automatically mark issues/PRs as stale | ||
days-before-stale: -1 | ||
any-of-labels: needs-response | ||
labels-to-remove-when-unstale: needs-response | ||
closeComment: > | ||
This issue has been automatically closed because we haven't received a response from the | ||
original author 🙈. This automation helps keep the issue tracker clean from issues that | ||
are unactionable. Please reach out if you have more information for us! 🙂 | ||
daysUntilClose: 10 | ||
responseRequiredLabel: needs-response | ||
token: ${{ github.token }} |