1234567891011121314151617181920212223 |
- # 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@3a9db7e6a41a89f618792c92c0e97cc736e1b13f
- with:
- any-of-labels: 'solved'
- stale-issue-label: 'solved'
- days-before-stale: 0
- days-before-close: 0
- repo-token: ${{ secrets.BITNAMI_SUPPORT_BOARD_TOKEN }}
|