mirror of
https://github.com/nextcloud/server.git
synced 2025-02-21 23:56:55 +00:00
![dependabot[bot]](/assets/img/avatar_default.png)
Bumps [actions/stale](https://github.com/actions/stale) from 8 to 9. - [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/v8...v9) --- updated-dependencies: - dependency-name: actions/stale dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
33 lines
937 B
YAML
33 lines
937 B
YAML
name: Close stale issues
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
schedule:
|
|
- cron: "0 0 * * *"
|
|
|
|
jobs:
|
|
stale:
|
|
runs-on: ubuntu-latest
|
|
|
|
if: ${{ github.repository_owner != 'nextcloud-gmbh' }}
|
|
|
|
permissions:
|
|
issues: write
|
|
|
|
steps:
|
|
- uses: actions/stale@v9
|
|
with:
|
|
repo-token: ${{ secrets.COMMAND_BOT_PAT }}
|
|
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.
|
|
stale-issue-label: 'stale'
|
|
only-labels: 'needs info'
|
|
labels-to-remove-when-unstale: 'needs info,stale'
|
|
exempt-issue-labels: '1. to develop,2. developing,3. to review,4. to release,security'
|
|
days-before-stale: 30
|
|
days-before-close: 14
|
|
# debug-only: true
|
|
|