mirror of
https://github.com/pi-hole/pi-hole.git
synced 2024-11-15 10:43:55 +00:00
5985d506f1
Signed-off-by: Christian König <ckoenig@posteo.de>
42 lines
1.3 KiB
YAML
42 lines
1.3 KiB
YAML
name: Mark stale issues
|
|
|
|
on:
|
|
schedule:
|
|
- cron: '0 8 * * *'
|
|
workflow_dispatch:
|
|
issue_comment:
|
|
|
|
jobs:
|
|
stale_action:
|
|
if: github.event_name != 'issue_comment'
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
issues: write
|
|
|
|
steps:
|
|
- uses: actions/stale@v7.0.0
|
|
with:
|
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
|
days-before-stale: 30
|
|
days-before-close: 5
|
|
stale-issue-message: 'This issue is stale because it has been open 30 days with no activity. Please comment or update this issue or it will be closed in 5 days.'
|
|
stale-issue-label: 'stale'
|
|
exempt-issue-labels: 'Internal, Fixed in next release, Bug: Confirmed, Documentation Needed'
|
|
exempt-all-issue-assignees: true
|
|
operations-per-run: 300
|
|
close-issue-reason: 'not_planned'
|
|
|
|
remove_stale: # trigger "stale" removal immediately when stale issues are commented on
|
|
if: github.event_name == 'issue_comment'
|
|
permissions:
|
|
contents: read # for actions/checkout
|
|
issues: write # to edit issues label
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v3.4.0
|
|
- name: Remove 'stale' label
|
|
run: gh issue edit ${{ github.event.issue.number }} --remove-label 'stale'
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|