2021-05-17 18:40:00 -04:00
|
|
|
name: 'Close stale issues and PRs'
|
|
|
|
on:
|
|
|
|
schedule:
|
|
|
|
- cron: '30 1 * * *'
|
2021-05-17 18:56:32 -04:00
|
|
|
workflow_dispatch:
|
2021-05-17 18:40:00 -04:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
stale:
|
2021-10-23 08:20:19 -04:00
|
|
|
if: github.repository == 'lvgl/lvgl'
|
2021-05-17 18:40:00 -04:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2022-04-05 08:14:03 -04:00
|
|
|
- uses: actions/stale@v5
|
2021-05-17 18:40:00 -04:00
|
|
|
with:
|
|
|
|
repo-token: ${{ secrets.LVGL_BOT_TOKEN }}
|
2022-08-02 08:09:28 +02:00
|
|
|
stale-issue-message: |
|
2022-04-19 08:37:46 +02:00
|
|
|
We need some feedback on this issue.
|
|
|
|
|
|
|
|
Now we mark this as "stale" because there was no activity here for 14 days.
|
|
|
|
|
2022-08-02 08:09:28 +02:00
|
|
|
Remove the "stale" label or comment else this will be closed in 7 days.
|
|
|
|
stale-pr-message: |
|
|
|
|
We need some feedback on this pull request.
|
|
|
|
|
|
|
|
Now we mark this as "stale" because there was no activity here for 14 days.
|
|
|
|
|
2022-04-19 08:37:46 +02:00
|
|
|
Remove the "stale" label or comment else this will be closed in 7 days.
|
|
|
|
close-issue-message: |
|
|
|
|
As there was no activity here for a while we close this issue. But don't worry, the conversation is still here and you can get back to it at any time.
|
|
|
|
|
|
|
|
So feel free to comment if you have remarks or ideas on this topic.
|
2021-05-18 10:07:42 -04:00
|
|
|
days-before-stale: 14
|
|
|
|
days-before-close: 7
|
2022-08-02 08:09:28 +02:00
|
|
|
exempt-issue-labels: 'pinned, next major, next minor'
|
|
|
|
exempt-pr-labels: 'pinned, next major, next minor'
|