mirror of
https://github.com/nextcloud/server.git
synced 2026-03-10 10:21:38 -04:00
Bumps the github-actions group with 5 updates: | Package | From | To | | --- | --- | --- | | [github/codeql-action](https://github.com/github/codeql-action) | `4.32.2` | `4.32.4` | | [cypress-io/github-action](https://github.com/cypress-io/github-action) | `7.1.2` | `7.1.5` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `6.0.0` | `7.0.0` | | [LizardByte/actions](https://github.com/lizardbyte/actions) | `2026.212.22356` | `2026.227.200013` | | [actions/stale](https://github.com/actions/stale) | `10.1.1` | `10.2.0` | Updates `github/codeql-action` from 4.32.2 to 4.32.4 - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](45cbd0c69e...89a39a4e59) Updates `cypress-io/github-action` from 7.1.2 to 7.1.5 - [Release notes](https://github.com/cypress-io/github-action/releases) - [Changelog](https://github.com/cypress-io/github-action/blob/master/CHANGELOG.md) - [Commits](84d178e4bb...bc22e01685) Updates `actions/upload-artifact` from 6.0.0 to 7.0.0 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](b7c566a772...bbbca2ddaa) Updates `LizardByte/actions` from 2026.212.22356 to 2026.227.200013 - [Release notes](https://github.com/lizardbyte/actions/releases) - [Commits](9bf3ef7837...70bb8d394d) Updates `actions/stale` from 10.1.1 to 10.2.0 - [Release notes](https://github.com/actions/stale/releases) - [Changelog](https://github.com/actions/stale/blob/main/CHANGELOG.md) - [Commits](997185467f...b5d41d4e1d) --- updated-dependencies: - dependency-name: github/codeql-action dependency-version: 4.32.4 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions - dependency-name: cypress-io/github-action dependency-version: 7.1.5 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions - dependency-name: actions/upload-artifact dependency-version: 7.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: LizardByte/actions dependency-version: 2026.227.200013 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions - dependency-name: actions/stale dependency-version: 10.2.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@b5d41d4e1d5dceea10e7104786b73624c18a190f # 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
|
|
|