mirror of
https://github.com/pi-hole/web.git
synced 2026-04-17 23:54:10 +01:00
Bumps [actions/stale](https://github.com/actions/stale) from 9.1.0 to 10.1.0. - [Release notes](https://github.com/actions/stale/releases) - [Changelog](https://github.com/actions/stale/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/stale/compare/v9.1.0...v10.1.0) --- updated-dependencies: - dependency-name: actions/stale dependency-version: 10.1.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
51 lines
1.8 KiB
YAML
51 lines
1.8 KiB
YAML
name: Mark stale issues
|
|
|
|
on:
|
|
schedule:
|
|
- cron: "0 8 * * *"
|
|
workflow_dispatch:
|
|
issue_comment:
|
|
|
|
env:
|
|
stale_label: stale
|
|
|
|
jobs:
|
|
stale_action:
|
|
if: github.event_name != 'issue_comment'
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
issues: write
|
|
|
|
steps:
|
|
- uses: actions/stale@5f858e3efba33a5ca4407a664cc011ad407f2008 #v10.1.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: "${{ env.stale_label }}"
|
|
exempt-issue-labels: "internal, Fixed In Next Release, Bug, never-stale, Bug: Confirmed"
|
|
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
|
|
# we need to explicitly check that the trigger does not run on comment on a PR as
|
|
# 'issue_comment' triggers on issues AND PR comments
|
|
# https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#issue_comment-on-issues-only-or-pull-requests-only
|
|
if: ${{ !github.event.issue.pull_request && github.event_name != 'schedule' }}
|
|
permissions:
|
|
contents: read # for actions/checkout
|
|
issues: write # to edit issues label
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Clone repository
|
|
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 #v5.0.0
|
|
with:
|
|
persist-credentials: false
|
|
- name: Remove 'stale' label
|
|
run: gh issue edit ${{ github.event.issue.number }} --remove-label ${{ env.stale_label }}
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|