mirror of
https://github.com/nextcloud/desktop.git
synced 2025-10-26 11:17:43 +00:00
Bumps [actions/stale](https://github.com/actions/stale) from 10.0.0 to 10.1.0.
- [Release notes](https://github.com/actions/stale/releases)
- [Changelog](https://github.com/actions/stale/blob/main/CHANGELOG.md)
- [Commits](3a9db7e6a4...5f858e3efb)
---
updated-dependencies:
- dependency-name: actions/stale
dependency-version: 10.1.0
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
35 lines
1.0 KiB
YAML
35 lines
1.0 KiB
YAML
# SPDX-FileCopyrightText: 2021 Nextcloud GmbH and Nextcloud contributors
|
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
name: 'Close stale issues'
|
|
|
|
on:
|
|
schedule:
|
|
- cron: '30 */8 * * *'
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
stale:
|
|
runs-on: ubuntu-latest
|
|
|
|
permissions:
|
|
issues: write
|
|
|
|
steps:
|
|
- uses: actions/stale@5f858e3efba33a5ca4407a664cc011ad407f2008 # v10.1.0
|
|
with:
|
|
operations-per-run: 1500
|
|
days-before-stale: 28
|
|
days-before-close: 14
|
|
days-before-pr-close: -1
|
|
stale-issue-label: 'stale'
|
|
only-labels: 'needs info'
|
|
exempt-issue-labels: '1. to develop,2. developing,3. to review,4. to release,security'
|
|
stale-issue-message: >
|
|
This issue has been automatically marked as stale because it has not had
|
|
recent activity and seems to be missing some essential information.
|
|
It will be closed if no further activity occurs. Thank you
|
|
for your contributions.
|
|
exempt-all-pr-milestones: true
|