Skip to content

Commit

Permalink
Create stale.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanlerch authored Apr 12, 2024
1 parent aebf78d commit 6579a01
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/stale.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Clean Stale Issues And Pull Requests

on:
workflow_dispatch:
schedule:
- cron: "0 1 * * *"

permissions:
issues: write
pull-requests: write

jobs:
stale:
runs-on: ubuntu-latest
steps:
- name: Close stale issues
uses: actions/[email protected]
with:
exempt-all-assignees: true
# exclude issues/PRs with the specified labels
exempt-labels: good-first-issue

0 comments on commit 6579a01

Please sign in to comment.