2021-06-02 21:35:51 +02:00
|
|
|
name: 'Close stale issues and PRs'
|
|
|
|
on:
|
|
|
|
schedule:
|
|
|
|
# Once every day at midnight UTC
|
2021-10-15 20:32:39 +02:00
|
|
|
- cron: "0 0 * * *"
|
2021-07-14 17:59:59 +02:00
|
|
|
workflow_dispatch: # Allow to run workflow manually
|
2021-10-15 20:32:39 +02:00
|
|
|
issue_comment: # Run workflow on comments
|
2021-06-02 21:35:51 +02:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
stale:
|
|
|
|
runs-on: ubuntu-latest
|
2021-06-02 21:48:09 +02:00
|
|
|
permissions:
|
|
|
|
issues: write
|
|
|
|
pull-requests: write
|
2021-06-02 21:35:51 +02:00
|
|
|
steps:
|
|
|
|
- name: Mark/Close Stale Issues and Pull Requests 🗑️
|
2023-03-22 15:00:55 +01:00
|
|
|
uses: actions/stale@v8.0.0
|
2021-06-02 21:35:51 +02:00
|
|
|
with:
|
2021-10-15 20:32:39 +02:00
|
|
|
repo-token: ${{ secrets.STALE_ACTION_PAT }}
|
2021-06-02 21:35:51 +02:00
|
|
|
days-before-stale: 60
|
|
|
|
days-before-close: 7
|
|
|
|
stale-issue-message: >
|
|
|
|
This issue has been automatically marked as stale because it has not had
|
|
|
|
recent activity. It will be closed if no further activity occurs.
|
|
|
|
stale-pr-message: >
|
|
|
|
This pull request has been automatically marked as stale because it has not had
|
|
|
|
recent activity. It will be closed if no further activity occurs.
|
2022-01-22 17:39:08 +01:00
|
|
|
exempt-issue-labels: "pinned,security,enhancement,investigating,neverstale"
|
|
|
|
exempt-pr-labels: "pinned,security,enhancement,investigating,neverstale"
|
2021-06-02 21:35:51 +02:00
|
|
|
stale-issue-label: "stale"
|
|
|
|
stale-pr-label: "stale"
|
2021-12-11 18:25:40 +01:00
|
|
|
exempt-draft-pr: "true"
|
2022-07-19 21:43:24 +02:00
|
|
|
close-issue-reason: "not_planned"
|
2021-06-02 22:08:26 +02:00
|
|
|
operations-per-run: "250"
|
|
|
|
ascending: "true"
|
2021-06-02 21:35:51 +02:00
|
|
|
#DRY-RUN
|
2021-10-15 20:32:39 +02:00
|
|
|
debug-only: "false"
|