2020-06-26 06:32:52 +08:00
|
|
|
name: "Close stale pull requests/issues"
|
|
|
|
on:
|
|
|
|
schedule:
|
|
|
|
- cron: "16 00 * * *"
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
stale:
|
2020-12-16 03:01:25 +08:00
|
|
|
name: Find Stale issues and PRs
|
2023-03-18 18:11:12 +08:00
|
|
|
runs-on: ubuntu-22.04
|
2020-11-22 17:00:05 +08:00
|
|
|
if: github.repository == 'zephyrproject-rtos/zephyr'
|
2020-06-26 06:32:52 +08:00
|
|
|
steps:
|
2023-04-15 14:28:02 +08:00
|
|
|
- uses: actions/stale@v8
|
2020-06-26 06:32:52 +08:00
|
|
|
with:
|
2023-01-03 21:08:30 +08:00
|
|
|
stale-pr-message: 'This pull request has been marked as stale because it has been open (more
|
|
|
|
than) 60 days with no activity. Remove the stale label or add a comment saying that you
|
|
|
|
would like to have the label removed otherwise this pull request will automatically be
|
|
|
|
closed in 14 days. Note, that you can always re-open a closed pull request at any time.'
|
|
|
|
stale-issue-message: 'This issue has been marked as stale because it has been open (more
|
|
|
|
than) 60 days with no activity. Remove the stale label or add a comment saying that you
|
|
|
|
would like to have the label removed otherwise this issue will automatically be closed in
|
|
|
|
14 days. Note, that you can always re-open a closed issue at any time.'
|
2020-06-26 06:32:52 +08:00
|
|
|
days-before-stale: 60
|
|
|
|
days-before-close: 14
|
|
|
|
stale-issue-label: 'Stale'
|
2020-07-02 21:28:03 +08:00
|
|
|
stale-pr-label: 'Stale'
|
2020-09-20 00:55:47 +08:00
|
|
|
exempt-pr-labels: 'Blocked,In progress'
|
2021-11-17 07:07:27 +08:00
|
|
|
exempt-issue-labels: 'In progress,Enhancement,Feature,Feature Request,RFC,Meta,Process'
|
2020-09-20 00:55:47 +08:00
|
|
|
operations-per-run: 400
|