mirror of
https://github.com/realm/SwiftLint.git
synced 2026-05-07 20:12:49 +00:00
22 lines
427 B
YAML
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 }}
|