-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #68 from upstash/DX-417
Add github action to mark issues stale automatically
- Loading branch information
Showing
1 changed file
with
29 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
name: 'Close stale issues and PRs' | ||
on: | ||
schedule: | ||
- cron: "30 1 * * *" | ||
|
||
env: | ||
DAYS_BEFORE_ISSUE_STALE: 30 | ||
DAYS_BEFORE_ISSUE_CLOSE: 7 | ||
|
||
jobs: | ||
close-issues: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
issues: write | ||
pull-requests: write | ||
steps: | ||
- uses: actions/stale@v8 | ||
with: | ||
days-before-issue-stale: ${{ env.DAYS_BEFORE_ISSUE_STALE }} | ||
days-before-issue-close: ${{ env.DAYS_BEFORE_ISSUE_CLOSE }} | ||
days-before-pr-stale: ${{ env.DAYS_BEFORE_ISSUE_STALE }} | ||
days-before-pr-close: ${{ env.DAYS_BEFORE_ISSUE_CLOSE }} | ||
stale-issue-label: "Inactive Issue" | ||
stale-issue-message: 'This issue is stale because it has been open 30 days with no activity. Remove stale label or comment or this will be closed in 5 days.' | ||
stale-pr-message: 'This PR is stale because it has been open 45 days with no activity. Remove stale label or comment or this will be closed in 10 days.' | ||
close-issue-message: 'This issue was closed because it has been stalled for 5 days with no activity.' | ||
close-pr-message: 'This PR was closed because it has been stalled for 10 days with no activity.' | ||
exempt-issue-labels: "Active Issue" | ||
repo-token: ${{ secrets.GITHUB_TOKEN }} |
48b0419
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
ratelimit-with-vercel-kv – ./examples/with-vercel-kv
ratelimit-with-vercel-kv-upstash.vercel.app
ratelimit-with-vercel-kv.vercel.app
ratelimit-with-vercel-kv-git-main-upstash.vercel.app