mirror of
https://github.com/itzg/docker-minecraft-server.git
synced 2026-07-30 04:14:54 +00:00
Bumps [actions/stale](https://github.com/actions/stale) from 10 to 11. - [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/v10...v11) --- updated-dependencies: - dependency-name: actions/stale dependency-version: '11' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
27 lines
723 B
YAML
27 lines
723 B
YAML
name: Stale Check
|
|
|
|
on:
|
|
schedule:
|
|
- cron: 0 2 * * *
|
|
|
|
jobs:
|
|
check:
|
|
runs-on: ubuntu-22.04
|
|
if: github.repository_owner == 'itzg'
|
|
permissions:
|
|
issues: write
|
|
pull-requests: write
|
|
steps:
|
|
- name: Process Stale Issues
|
|
uses: actions/stale@v11
|
|
with:
|
|
stale-issue-label: status/stale
|
|
stale-pr-label: status/stale
|
|
stale-issue-message: >
|
|
This issue is stale because it has been open 30 days with no activity.
|
|
Please add a comment describing the reason to keep this issue open.
|
|
days-before-stale: 30
|
|
days-before-close: 5
|
|
exempt-issue-labels: 'enhancement,keep,status/needs triage,priority/high'
|
|
|