mirror of
https://github.com/bitnami/charts.git
synced 2026-08-09 21:04:38 +08:00
fd44ff1d22
Bumps [actions/stale](https://github.com/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](https://github.com/actions/stale/compare/997185467fa4f803885201cee163a9f38240193d...b5d41d4e1d5dceea10e7104786b73624c18a190f) --- updated-dependencies: - dependency-name: actions/stale dependency-version: 10.2.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>
23 lines
743 B
YAML
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@b5d41d4e1d5dceea10e7104786b73624c18a190f
|
|
with:
|
|
any-of-labels: 'solved'
|
|
stale-issue-label: 'solved'
|
|
days-before-stale: 0
|
|
days-before-close: 0
|
|
repo-token: ${{ secrets.BITNAMI_SUPPORT_BOARD_TOKEN }} |