Skip to content

Commit

Permalink
Remove probot-no-response and update to stale workflow, closes #3525
Browse files Browse the repository at this point in the history
  • Loading branch information
JakobLichterfeld committed Nov 30, 2023
1 parent abd1e6c commit fc3c92d
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 26 deletions.
7 changes: 0 additions & 7 deletions .github/no-response.yml

This file was deleted.

19 changes: 0 additions & 19 deletions .github/stale.yml

This file was deleted.

30 changes: 30 additions & 0 deletions .github/workflows/stale.yml
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'

0 comments on commit fc3c92d

Please sign in to comment.