Skip to content

Commit

Permalink
ci: replace probot with actions workflow
Browse files Browse the repository at this point in the history
Probot is basically discontinued, even though it's not 100% clear...
  • Loading branch information
EndBug committed Aug 29, 2022
1 parent 29f94b7 commit ff395b9
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 19 deletions.
19 changes: 0 additions & 19 deletions .github/stale.yml

This file was deleted.

26 changes: 26 additions & 0 deletions .github/workflows/stale.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: 'Close stale issues and PR'
on:
schedule:
- cron: '00 5 * * *'
workflow_dispatch:

jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v5
with:
days-before-stale: 20
days-before-close: 5
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 PR 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-issue-label: 'status: stale'
stale-pr-label: 'status: stale'
exempt-issue-labels: 'pinned,security,status: pinned,type: security'
exempt-pr-labels: 'pinned,security,status: pinned,type: security'

0 comments on commit ff395b9

Please sign in to comment.