21 lines
699 B
YAML
21 lines
699 B
YAML
# https://docs.github.com/en/actions/reference/workflows-and-actions/workflow-syntax
|
|
name: Stale issues
|
|
|
|
on: # https://docs.github.com/en/actions/reference/workflows-and-actions/events-that-trigger-workflows
|
|
schedule:
|
|
# https://docs.github.com/en/actions/reference/workflows-and-actions/events-that-trigger-workflows#schedule
|
|
- cron: '0 15 1,15 * *'
|
|
workflow_dispatch:
|
|
# https://docs.github.com/en/actions/reference/workflows-and-actions/events-that-trigger-workflows#workflow_dispatch
|
|
|
|
permissions:
|
|
issues: write
|
|
pull-requests: write
|
|
|
|
jobs:
|
|
stale:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Run stale action
|
|
uses: sebthom/gha-shared/.github/actions/stale@v1
|