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'
|
2024-04-08 18:18:13 +02:00
|
|
|
runs-on: ubuntu-22.04
|
2021-05-17 18:40:00 -04:00
|
|
|
steps:
|
2024-01-02 08:08:16 +01:00
|
|
|
- uses: actions/stale@v9
|
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.
|
2024-04-08 18:18:13 +02:00
|
|
|
|
2024-09-30 17:38:49 +02:00
|
|
|
Now we mark this as "Abandoned" because there was no activity here for 14 days.
|
2024-04-08 18:18:13 +02:00
|
|
|
|
2024-09-30 17:38:49 +02:00
|
|
|
Remove the "Stale" label or comment else this will be closed in 7 days.
|
2022-08-02 08:09:28 +02:00
|
|
|
stale-pr-message: |
|
|
|
|
We need some feedback on this pull request.
|
2024-04-08 18:18:13 +02:00
|
|
|
|
2024-09-30 17:38:49 +02:00
|
|
|
Now we mark this as "Abandoned" because there was no activity here for 14 days.
|
2024-04-08 18:18:13 +02:00
|
|
|
|
2024-10-10 04:46:49 +02:00
|
|
|
Remove the "Abandoned" label or comment else this will be closed in 7 days.
|
2022-04-19 08:37:46 +02:00
|
|
|
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.
|
2024-04-08 18:18:13 +02:00
|
|
|
|
2024-09-30 17:38:49 +02:00
|
|
|
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
|
2024-10-10 04:46:49 +02:00
|
|
|
exempt-issue-labels: '🔥 Important'
|
|
|
|
exempt-pr-labels: '🔥 Important'
|
|
|
|
stale-issue-label: '💤 Stale'
|
|
|
|
stale-pr-label: '💤 Stale'
|
|
|
|
close-issue-label: '🪹 Abandoned'
|
|
|
|
close-pr-label: '🪹 Abandoned'
|