Files
supabase/.github/workflows/stale.yml
Stephen Morgan 431be5682b fix: review actions (#34648)
* fix: possible command injection in docs-lint

* fix: explicit permissions for github actions
2025-04-02 16:41:14 +13:00

24 lines
643 B
YAML

name: Automatically label stale issues
on:
schedule:
- cron: '30 1 * * *'
permissions:
issues: write
pull-requests: write
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Label Stale Issues
uses: actions/stale@v9.0.0
with:
days-before-issue-stale: 30
stale-issue-message: 'After 30 days of inactivity, this issue has been marked as stale. Commenting (or other activity) will remove the stale label.'
stale-issue-label: stale
any-of-labels: contributor
exempt-issue-labels: dnc, needs-analysis
exempt-all-assignees: true