mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-11-11 12:17:14 +03:00
df51c357eb
Co-authored-by: Andrew Murray <3112309+radarhere@users.noreply.github.com>
28 lines
615 B
YAML
28 lines
615 B
YAML
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@v5
|
|
with:
|
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
|
debug-only: true
|
|
only-issue-labels: "Awaiting OP Action"
|
|
close-issue-message: "Closing this issue as no feedback has been received."
|
|
days-before-stale: -1
|
|
days-before-close: 1
|
|
labels-to-remove-when-unstale: "Awaiting OP Action"
|