mirror of
https://github.com/wintercms/winter.git
synced 2024-06-28 05:33:29 +02:00
32 lines
1.3 KiB
YAML
32 lines
1.3 KiB
YAML
name: Archive
|
|
|
|
on:
|
|
schedule:
|
|
- cron: "0 0 * * *"
|
|
|
|
jobs:
|
|
archive:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/stale@v1.1.0
|
|
with:
|
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
|
days-before-stale: 60
|
|
days-before-close: 3
|
|
stale-issue-message: >
|
|
This issue will be closed and archived in 3 days, as there has been no activity in the last 60 days.
|
|
|
|
If this issue is still relevant or you would like to see it actioned, please respond and we will re-open this issue.
|
|
|
|
If this issue is critical to your business, consider joining the [Premium Support Program](https://wintercms.com/premium-support) where a Service Level Agreement is offered.
|
|
stale-pr-message: >
|
|
This pull request will be closed and archived in 3 days, as there has been no activity in the last 60 days.
|
|
|
|
If this is still being worked on, please respond and we will re-open this pull request.
|
|
|
|
If this pull request is critical to your business, consider joining the [Premium Support Program](https://wintercms.com/premium-support) where a Service Level Agreement is offered.
|
|
stale-issue-label: 'Status: Archived'
|
|
stale-pr-label: 'Status: Archived'
|
|
exempt-issue-label: 'Status: In Progress'
|
|
exempt-pr-label: 'Status: In Progress'
|