move-closed-issues.yml 689 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] Move closed issues'
  5. on:
  6. issues:
  7. types:
  8. - closed
  9. pull_request_target:
  10. types:
  11. - closed
  12. permissions:
  13. issues: write
  14. pull-requests: write
  15. # Avoid concurrency over the same issue
  16. concurrency:
  17. group: card-movement-${{ github.event.issue != null && github.event.issue.number || github.event.number }}
  18. jobs:
  19. call-move-closed-workflow:
  20. if: ${{ github.repository_owner == 'bitnami' }}
  21. uses: bitnami/support/.github/workflows/item-closed.yml@main
  22. secrets: inherit