Pillow/.github/workflows/stale.yml

32 lines
714 B
YAML
Raw Normal View History

name: Close stale issues
on:
schedule:
- cron: "10 0 * * *"
workflow_dispatch:
permissions:
issues: write
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
stale:
if: github.repository_owner == 'python-pillow'
runs-on: ubuntu-latest
steps:
- name: "Check issues"
2023-03-24 06:50:20 +03:00
uses: actions/stale@v8
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
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."
2022-04-13 16:07:20 +03:00
days-before-stale: 7
days-before-issue-close: 0
2022-04-12 14:54:29 +03:00
days-before-pr-close: -1
labels-to-remove-when-unstale: "Awaiting OP Action"