clossing-issues.yml 743 B

1234567891011121314151617181920212223
  1. # Copyright Broadcom, Inc. All Rights Reserved.
  2. # SPDX-License-Identifier: APACHE-2.0
  3. # NOTE: This workflow is maintained in the https://github.com/bitnami/support repository
  4. name: '[Support] Close Solved issues'
  5. on:
  6. schedule:
  7. # Hourly
  8. - cron: '0 * * * *'
  9. # Remove all permissions by default. Actions are performed by Bitnami Bot
  10. permissions: {}
  11. jobs:
  12. stale:
  13. runs-on: ubuntu-latest
  14. if: ${{ github.repository_owner == 'bitnami' }}
  15. steps:
  16. - uses: actions/stale@3a9db7e6a41a89f618792c92c0e97cc736e1b13f
  17. with:
  18. any-of-labels: 'solved'
  19. stale-issue-label: 'solved'
  20. days-before-stale: 0
  21. days-before-close: 0
  22. repo-token: ${{ secrets.BITNAMI_SUPPORT_BOARD_TOKEN }}