Pillow/.github/workflows/stale.yml

28 lines
609 B
YAML
Raw Normal View History

name: Close stale issues
on:
schedule:
- cron: "10 0 * * *"
workflow_dispatch:
permissions:
issues: write
jobs:
stale:
if: github.repository_owner == 'python-pillow'
runs-on: ubuntu-latest
steps:
- name: "Check issues"
uses: actions/stale@v4
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
2022-04-12 13:15:44 +03:00
debug-only: true
2022-04-12 14:53:50 +03:00
only-labels: "Awaiting OP Action"
close-issue-message: "Closing this issue as no feedback has been received."
days-before-stale: -1
2022-04-12 13:15:44 +03:00
days-before-close: 1
labels-to-remove-when-unstale: "Awaiting OP Action"