mirror of
https://github.com/lucide-icons/lucide.git
synced 2025-12-28 17:26:31 +01:00
* ✅ Add tests for flutter release package * 👷 Format files * Add long description to fix pubspec score
19 lines
621 B
YAML
19 lines
621 B
YAML
name: Close stale issues and PR
|
|
on:
|
|
schedule:
|
|
- cron: "45 1 * * *"
|
|
|
|
jobs:
|
|
stale:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/stale@v3
|
|
with:
|
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
|
stale-pr-message: This PR is stale because it has been open 45 days with no activity. Remove stale label or comment or this will be closed in 5 days.
|
|
close-pr-message: This PR was closed because it has been stalled for 5 days with no activity.
|
|
close-pr-label: 🧶 stale
|
|
days-before-stale: 30
|
|
days-before-close: 5
|
|
days-before-pr-close: -1
|