jetty.project/.github/workflows/stale-action.yml

31 lines
1.3 KiB
YAML

name: "Mark or close stale issues and PRs"
on:
schedule:
- cron: "0 0 * * *"
jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v4
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
days-before-stale: 365
stale-issue-label: Stale
stale-pr-label: Stale
stale-issue-message: |
This issue has been automatically marked as stale because it has been a
full year without activity. It will be closed if no further activity occurs.
Thank you for your contributions.
stale-pr-message: |
This pull request has been automatically marked as stale because it has been a
full year without activity. It will be closed if no further activity occurs.
Thank you for your contributions.
# Not stale if using these labels
exempt-issue-labels: Pinned,Security,Specification,TCK
exempt-pr-labels: Pinned,Security,Specification,TCK
exempt-all-milestones: false
days-before-close: 30
delete-branch: true
close-issue-message: This issue has been closed due to it having no activity.
close-pr-message: This pull request has been closed due to it having no activity.