Skip to content

chore: fix stale PR closing workflow #13194

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 6 commits into from
Apr 24, 2025
Merged
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion .github/workflows/stale.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
name: 'Close stale issues and PRs'
on:
# TEST
push:
branches:
- erikayasuda/fix-stale-close
workflow_dispatch:
schedule:
# 00:00:000 UTC
- cron: '0 0 * * *'
Expand All @@ -17,7 +22,10 @@ jobs:
# DEV: GitHub Actions have an API rate limit of 1000 operations per hour per repository
# This limit is shared across all actions
operations-per-run: 200
days-before-pr-close: 30
# DEV: Mark PR as stale after 30 days
days-before-pr-stale: 30
# DEV: Close stale PR after 1 day of no activity
days-before-pr-close: 1
days-before-issue-close: 90
exempt-issue-labels: 'proposal'
exempt-pr-labels: 'proposal'
Expand Down
Loading