Skip to content
This repository was archived by the owner on May 22, 2025. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions .github/workflows/stale.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Mark stale issues and pull requests

on:
schedule:
- cron: "0 0 * * *"

jobs:
stale:

runs-on: ubuntu-latest

steps:
- name: Close Stale Issues
uses: actions/stale@v3.0.3
with:
repo-token: "{{secrets.GITHUB_TOKEN}}"
# The message to post on the pr when tagging it. If none provided, will not mark pull requests stale.
stale-pr-message: "This pull request has been inactive for 5 days, it will be closed in 3 days if there still is no activity."
days-before-stale: 5
days-before-close: 3
stale-pr-label: "Stale"
only-labels: "Awaiting - Action - Author"
operations-per-run: 30
remove-stale-when-updated: true