Files
SwiftLint/.github/workflows/stale-issues.yml
2025-02-15 17:05:46 +01:00

22 lines
427 B
YAML

name: Stale Issues
on:
schedule:
- cron: '0 0 15 * *'
workflow_dispatch:
permissions:
issues: write
jobs:
close-stale-issues:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Mark or close stale issues
run: |
./tools/stale-issues.rb ${{ github.repository }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}