-
Notifications
You must be signed in to change notification settings - Fork 984
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add stale issue closer in dry run mode
- Loading branch information
1 parent
c298283
commit 03bf3a3
Showing
2 changed files
with
31 additions
and
0 deletions.
There are no files selected for viewing
File renamed without changes.
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,31 @@ | ||
name: Stale | ||
on: | ||
schedule: | ||
- cron: '0 12 * * *' | ||
jobs: | ||
Stale: | ||
runs-on: ubuntu-latest | ||
if: github.repository == 'aws/karpenter' | ||
name: Stale issue job | ||
steps: | ||
- uses: aws-actions/stale-issue-cleanup@v4 | ||
with: | ||
ancient-issue-message: 'This issue was closed because it has been stalled for 1 year with no activity. Please feel free to open it if you think it should remain open' | ||
stale-issue-message: 'This issue was closed because it has been stalled for 25 days with no activity. Remove stale label or comment or this will be closed in 10 days.' | ||
stale-pr-message: 'This PR is stale because it has been open 25 days with no activity. Remove stale label or comment or this will be closed in 10 days.' | ||
|
||
stale-issue-label: 'stale' | ||
exempt-issue-labels: 'roadmap,help-wanted,burning,bug,feature,documentation,operational-excellence' | ||
stale-pr-label: 'stale' | ||
exempt-pr-labels: 'roadmap,help-wanted,burning,bug,feature,documentation,operational-excellence' | ||
response-requested-label: response-requested | ||
closed-for-staleness-label: `stale` | ||
|
||
days-before-stale: 25 | ||
days-before-close: 10 | ||
days-before-ancient: 365 | ||
minimum-upvotes-to-exempt: 10 | ||
|
||
repo-token: ${{ secrets.GITHUB_TOKEN }} | ||
loglevel: DEBUG | ||
dry-run: true |