mirror of
https://github.com/tycrek/degoogle.git
synced 2025-08-21 22:06:14 +02:00
Create close-stale-issues.yml
This commit is contained in:
22
.github/workflows/close-stale-issues.yml
vendored
Normal file
22
.github/workflows/close-stale-issues.yml
vendored
Normal file
@@ -0,0 +1,22 @@
|
|||||||
|
name: "Close stale issues"
|
||||||
|
on:
|
||||||
|
schedule:
|
||||||
|
- cron: "0 */12 * * *"
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
stale:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/stale@v3
|
||||||
|
with:
|
||||||
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
close-issue-message: Closed due to inactivity
|
||||||
|
close-pr-message: Closed due to inactivity
|
||||||
|
days-before-stale: 30
|
||||||
|
days-before-close: 45
|
||||||
|
stale-issue-label: stale
|
||||||
|
stale-pr-label: stale
|
||||||
|
exempt-issue-labels: help wanted,revisit
|
||||||
|
exempt-pr-labels: help wanted,revisit
|
||||||
|
skip-stale-pr-message: true
|
||||||
|
skip-stale-issue-message: true
|
Reference in New Issue
Block a user