2021-06-03 03:35:51 +08:00
|
|
|
name: 'Close stale issues and PRs'
|
|
|
|
on:
|
|
|
|
schedule:
|
|
|
|
# Once every day at midnight UTC
|
|
|
|
- cron: "0 0 * * *"
|
2021-06-03 03:54:24 +08:00
|
|
|
workflow_dispatch:
|
2021-06-03 03:35:51 +08:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
stale:
|
|
|
|
runs-on: ubuntu-latest
|
2021-06-03 03:48:09 +08:00
|
|
|
permissions:
|
|
|
|
issues: write
|
|
|
|
pull-requests: write
|
2021-06-03 03:35:51 +08:00
|
|
|
steps:
|
|
|
|
- name: Mark/Close Stale Issues and Pull Requests 🗑️
|
|
|
|
uses: actions/stale@v3
|
|
|
|
with:
|
|
|
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
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.
|
|
|
|
exempt-issue-labels: "pinned,security,enhancement"
|
|
|
|
exempt-pr-labels: "pinned,security,enhancement"
|
|
|
|
stale-issue-label: "stale"
|
|
|
|
stale-pr-label: "stale"
|
|
|
|
operations-per-run: "50"
|
|
|
|
#DRY-RUN
|
2021-06-03 03:48:45 +08:00
|
|
|
debug-only: "false"
|