-
Notifications
You must be signed in to change notification settings - Fork 766
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove probot-no-response and update to stale workflow, closes #3525
- Loading branch information
1 parent
abd1e6c
commit fc3c92d
Showing
3 changed files
with
30 additions
and
26 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,30 @@ | ||
name: 'Close Stale Issues and Pull Requests' | ||
|
||
on: | ||
schedule: | ||
- cron: "45 0 * * *" # every day at 00:45 UTC | ||
|
||
permissions: | ||
issues: write | ||
pull-requests: write | ||
|
||
jobs: | ||
stale: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/stale@v8 | ||
with: | ||
stale-issue-message: > | ||
This issue has been automatically marked as stale because | ||
it has not had recent activity. It will be closed if | ||
no further activity occurs. Thank you for your contributions. | ||
stale-pr-message: > | ||
This pull request has been automatically marked as stale because | ||
it has not had recent activity. It could be closed if no further | ||
activity occurs. Thank you for your contributions. | ||
days-before-stale: 60 | ||
days-before-close: 7 | ||
days-before-pr-close: -1 | ||
exempt-all-pr-milestones: true | ||
exempt-issue-labels: 'area:grafana, area:tesla api, enhancement, kind:bug, kind:documentation, kind:idea, note:needs investigation, security, pinned' | ||
exempt-pr-labels: 'awaiting-approval, area:grafana, area:tesla api, enhancement, kind:bug, kind:documentation, kind:idea, note:needs investigation, security, pinned' |