Skip to content

Commit

Permalink
create stale workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
mib1185 authored Oct 15, 2024
1 parent 446498c commit 9dd3526
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/stale.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Stale

on:
schedule:
- cron: '00 10 * * *'
workflow_dispatch:

jobs:
stale:
runs-on: ubuntu-latest
steps:
- name: stale issues
uses: actions/[email protected]
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
days-before-stale: 60
days-before-close: 7
days-before-pr-stale: -1
days-before-pr-close: -1
stale-issue-label: 'stale'
stale-issue-message: >
There hasn't been any activity on this issue recently.
This issue has now been marked as stale and will be closed if no
further activity occurs.

0 comments on commit 9dd3526

Please sign in to comment.