Skip to content
This repository has been archived by the owner on May 30, 2024. It is now read-only.

Commit

Permalink
Merge pull request #711 from Shopify/ko/stale-bot
Browse files Browse the repository at this point in the history
Add stalebot for issues & pull requests
  • Loading branch information
KaanOzkan authored Jul 20, 2023
2 parents ea0d2f8 + 4ce4f4a commit a5bafd4
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/close_stale_issues_and_prs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: "Close stale issues & pull requests"
on:
schedule:
- cron: "30 12 * * *"

permissions:
issues: write
pull-requests: write

jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v8
with:
days-before-stale: 60
days-before-close: 14
exempt-issue-labels: pinned
exempt-pr-labels: pinned

0 comments on commit a5bafd4

Please sign in to comment.