You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
1.0 KiB
YAML
27 lines
1.0 KiB
YAML
2 years ago
|
name: "stale bot"
|
||
|
on:
|
||
|
schedule:
|
||
|
- cron: "30 1 * * *"
|
||
|
|
||
|
permissions:
|
||
|
issues: write
|
||
|
|
||
|
jobs:
|
||
|
stale:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- uses: actions/stale@v8
|
||
|
with:
|
||
|
stale-issue-message: "This issue has been open 30 days with no activity. This will be closed in 7 days."
|
||
|
close-issue-message: "This issue has been automatically marked as stale because it hasn't had any recent activity.If you think this should still be open, or the problem still persists,just pop a reply in the comments and one of the maintainers will (try!) to follow up.Thank you for your interest and contribution to the Sping Cloud Alibaba Community."
|
||
|
days-before-issue-stale: 30
|
||
|
days-before-issue-close: 7
|
||
|
stale-issue-label: "stale"
|
||
|
close-issue-label: "wait-for-feedback"
|
||
|
exempt-all-milestones: true
|
||
|
operations-per-run: 10
|
||
|
days-before-pr-stale: -1
|
||
|
days-before-pr-close: -1
|
||
|
exempt-issue-labels: discussion,bug,question,good first issue
|
||
|
|