-
Notifications
You must be signed in to change notification settings - Fork 193
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
The stale app has been deprecated and replaced with a GitHub Action. probot/probot.github.io#376 probot/stale#385 Signed-off-by: Daniel Farrell <[email protected]>
- Loading branch information
1 parent
cd35a87
commit 50a7f9e
Showing
2 changed files
with
32 additions
and
57 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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,32 @@ | ||
--- | ||
name: Stale | ||
|
||
on: | ||
schedule: | ||
- cron: "0 0 * * *" | ||
|
||
permissions: {} | ||
|
||
jobs: | ||
stale: | ||
name: Close Stale Issues and PRs | ||
if: github.repository_owner == 'submariner-io' | ||
runs-on: ubuntu-latest | ||
permissions: | ||
issues: write | ||
pull-requests: write | ||
steps: | ||
- uses: actions/stale@b69b346013879cedbf50c69f572cd85439a41936 | ||
with: | ||
days-before-issue-stale: 120 | ||
days-before-pr-stale: 14 | ||
exempt-issue-labels: 'confirmed,security' | ||
exempt-pr-labels: 'confirmed,security' | ||
stale-issue-label: 'stale' | ||
stale-issue-message: | | ||
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further | ||
activity occurs. Thank you for your contributions. | ||
stale-pr-label: 'stale' | ||
stale-pr-message: | | ||
This pull request has been automatically marked as stale because it has not had recent activity. It will be closed if no further | ||
activity occurs. Thank you for your contributions. |