2021-09-14 10:35:37 +02:00
|
|
|
name: Stale
|
|
|
|
|
|
|
|
on:
|
|
|
|
schedule:
|
2021-09-19 14:20:35 +02:00
|
|
|
- cron: '30 0 * * *'
|
2021-09-14 10:35:37 +02:00
|
|
|
workflow_dispatch:
|
|
|
|
|
|
|
|
permissions:
|
|
|
|
issues: write
|
|
|
|
pull-requests: write
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
stale:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/stale@v4
|
|
|
|
with:
|
|
|
|
repo-token: ${{ github.token }}
|
|
|
|
days-before-pr-stale: 90
|
|
|
|
days-before-pr-close: 7
|
|
|
|
days-before-issue-stale: -1
|
|
|
|
days-before-issue-close: -1
|
|
|
|
remove-stale-when-updated: true
|
|
|
|
stale-pr-label: "stale"
|
|
|
|
exempt-pr-labels: "no-stale"
|
|
|
|
stale-pr-message: >
|
|
|
|
There hasn't been any activity on this pull request recently. This
|
|
|
|
pull request has been automatically marked as stale because of that
|
|
|
|
and will be closed if no further activity occurs within 7 days.
|
|
|
|
Thank you for your contributions.
|