๐Ÿ“ฆ directus / stale-issues-action

GitHub Action for closing stale issues.

โ˜… 0 stars โ‘‚ 1 forks ๐Ÿ‘ 0 watching โš–๏ธ MIT License
๐Ÿ“ฅ Clone https://github.com/directus/stale-issues-action.git
HTTPS git clone https://github.com/directus/stale-issues-action.git
SSH git clone git@github.com:directus/stale-issues-action.git
CLI gh repo clone directus/stale-issues-action
Pascal Jufer Pascal Jufer Remove superfluous dot for eslint cli c316d69 10 months ago ๐Ÿ“ History
๐Ÿ“‚ main View all commits โ†’
๐Ÿ“ .github
๐Ÿ“ .vscode
๐Ÿ“ dist
๐Ÿ“ src
๐Ÿ“„ .editorconfig
๐Ÿ“„ .gitattributes
๐Ÿ“„ .gitignore
๐Ÿ“„ .npmrc
๐Ÿ“„ action.yml
๐Ÿ“„ eslint.config.js
๐Ÿ“„ license
๐Ÿ“„ package.json
๐Ÿ“„ pnpm-lock.yaml
๐Ÿ“„ readme.md
๐Ÿ“„ tsconfig.json
๐Ÿ“„ tsup.config.js
๐Ÿ“„ README.md

Stale Issues Action

GitHub Action to close issues certain days after a stale label has been added.

Usage

name: Close Stale Issues

on: schedule:

  • cron: '30 1 *'
permissions: issues: write

jobs: stale: runs-on: ubuntu-latest steps:

  • uses: directus/stale-issues-action@v1
with: stale-label: stale days-before-close: 7 close-message: Closing this issue as it has become stale.

A maximum of 50 issues with the stale label are processed per run in order not to exceed GitHub's rate limits. If more stale issues are expected, it's recommended to schedule the action more frequently (but at no more than once an hour).

Additional Resources