mirror of
https://github.com/nextcloud/server.git
synced 2026-06-12 10:10:49 -04:00
Bumps the github-actions group with 5 updates: | Package | From | To | | --- | --- | --- | | [github/codeql-action](https://github.com/github/codeql-action) | `4.35.4` | `4.36.0` | | [alexwilson/enable-github-automerge-action](https://github.com/alexwilson/enable-github-automerge-action) | `2.0.0` | `3.0.0` | | [codecov/codecov-action](https://github.com/codecov/codecov-action) | `6.0.0` | `6.0.1` | | [LizardByte/actions](https://github.com/lizardbyte/actions) | `2026.417.35446` | `2026.524.145234` | | [actions/stale](https://github.com/actions/stale) | `10.2.0` | `10.3.0` | Updates `github/codeql-action` from 4.35.4 to 4.36.0 - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](68bde559de...7211b7c807) Updates `alexwilson/enable-github-automerge-action` from 2.0.0 to 3.0.0 - [Release notes](https://github.com/alexwilson/enable-github-automerge-action/releases) - [Changelog](https://github.com/alexwilson/enable-github-automerge-action/blob/main/CHANGELOG.md) - [Commits](56e3117d1a...2c32e18a76) Updates `codecov/codecov-action` from 6.0.0 to 6.0.1 - [Release notes](https://github.com/codecov/codecov-action/releases) - [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md) - [Commits](57e3a136b7...e79a6962e0) Updates `LizardByte/actions` from 2026.417.35446 to 2026.524.145234 - [Release notes](https://github.com/lizardbyte/actions/releases) - [Commits](4125866b7b...25babf9f2e) Updates `actions/stale` from 10.2.0 to 10.3.0 - [Release notes](https://github.com/actions/stale/releases) - [Changelog](https://github.com/actions/stale/blob/main/CHANGELOG.md) - [Commits](b5d41d4e1d...eb5cf3af3a) --- updated-dependencies: - dependency-name: github/codeql-action dependency-version: 4.36.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions - dependency-name: alexwilson/enable-github-automerge-action dependency-version: 3.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: codecov/codecov-action dependency-version: 6.0.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions - dependency-name: LizardByte/actions dependency-version: 2026.524.145234 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions - dependency-name: actions/stale dependency-version: 10.3.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions ... Signed-off-by: dependabot[bot] <support@github.com>
37 lines
1 KiB
YAML
37 lines
1 KiB
YAML
# SPDX-FileCopyrightText: 2019 Nextcloud GmbH and Nextcloud contributors
|
|
# SPDX-License-Identifier: MIT
|
|
name: Close stale issues
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
schedule:
|
|
- cron: "0 0 * * *"
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
stale:
|
|
runs-on: ubuntu-latest
|
|
|
|
if: ${{ github.repository_owner != 'nextcloud-gmbh' }}
|
|
|
|
permissions:
|
|
issues: write
|
|
|
|
steps:
|
|
- uses: actions/stale@eb5cf3af3ac0a1aa4c9c45633dd1ae542a27a899 # 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'
|
|
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
|
|
|