Files
containers/.github/workflows/clossing-issues.yml
dependabot[bot] a678a5633e Bump actions/stale from 10.0.0 to 10.1.0 (#86872)
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>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-06 09:24:54 +02:00

23 lines
743 B
YAML

# Copyright Broadcom, Inc. All Rights Reserved.
# SPDX-License-Identifier: APACHE-2.0
# NOTE: This workflow is maintained in the https://github.com/bitnami/support repository
name: '[Support] Close Solved issues'
on:
schedule:
# Hourly
- cron: '0 * * * *'
# Remove all permissions by default. Actions are performed by Bitnami Bot
permissions: {}
jobs:
stale:
runs-on: ubuntu-latest
if: ${{ github.repository_owner == 'bitnami' }}
steps:
- uses: actions/stale@5f858e3efba33a5ca4407a664cc011ad407f2008
with:
any-of-labels: 'solved'
stale-issue-label: 'solved'
days-before-stale: 0
days-before-close: 0
repo-token: ${{ secrets.BITNAMI_SUPPORT_BOARD_TOKEN }}