This repository has been archived by the owner on Oct 16, 2024. It is now read-only.
clear-stale-PRs #66
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: clear-stale-PRs | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: "0 0 * * *" # UTC Midnight everyday | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Close Stale Issues | |
uses: actions/[email protected] | |
with: | |
repo-token: ${{ secrets.PAT }} | |
# ====== for pr | |
exempt-pr-labels: pinned,security,good-first-issue,in-progress | |
ascending: true # gets in ascending order | |
stale-issue-label: "stale" | |
days-before-pr-stale: 21 | |
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 - please feel free to re-open when your project has more traction. | |
days-before-pr-close: 7 | |
close-pr-message: | | |
This pull request has not seen any activity since it was marked stale. | |
Closing. | |
operations-per-run: 250 | |
debug-only: false # true for dry run, false to actually perform the operations |