We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 98e8e6d + df51c35 commit 40a8cd3Copy full SHA for 40a8cd3
.github/workflows/stale.yml
@@ -0,0 +1,27 @@
1
+name: Close stale issues
2
+
3
+on:
4
+ schedule:
5
+ - cron: "10 0 * * *"
6
+ workflow_dispatch:
7
8
+permissions:
9
+ issues: write
10
11
+jobs:
12
+ stale:
13
+ if: github.repository_owner == 'python-pillow'
14
15
+ runs-on: ubuntu-latest
16
17
+ steps:
18
+ - name: "Check issues"
19
+ uses: actions/stale@v5
20
+ with:
21
+ repo-token: ${{ secrets.GITHUB_TOKEN }}
22
+ debug-only: true
23
+ only-issue-labels: "Awaiting OP Action"
24
+ close-issue-message: "Closing this issue as no feedback has been received."
25
+ days-before-stale: -1
26
+ days-before-close: 1
27
+ labels-to-remove-when-unstale: "Awaiting OP Action"
0 commit comments