Skip to content

Commit

Permalink
Merge pull request #6203 from hugovk/stale
Browse files Browse the repository at this point in the history
  • Loading branch information
hugovk committed Apr 12, 2022
2 parents 98e8e6d + df51c35 commit 40a8cd3
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/stale.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
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"

0 comments on commit 40a8cd3

Please sign in to comment.