triage.yml 806 B

123456789101112131415161718192021222324252627
  1. # Copyright Broadcom, Inc. All Rights Reserved.
  2. # SPDX-License-Identifier: APACHE-2.0
  3. # This workflow is built to manage the triage support by using GH issues.
  4. # NOTE: This workflow is maintained in the https://github.com/bitnami/support repository
  5. name: '[Support] Organize triage'
  6. on:
  7. issues:
  8. types:
  9. - reopened
  10. - opened
  11. pull_request_target:
  12. types:
  13. - reopened
  14. - opened
  15. permissions:
  16. contents: read
  17. pull-requests: write
  18. issues: write
  19. # Avoid concurrency over the same issue
  20. concurrency:
  21. group: card-movement-${{ github.event.issue != null && github.event.issue.number || github.event.number }}
  22. jobs:
  23. call-triage-workflow:
  24. if: ${{ github.repository_owner == 'bitnami' }}
  25. uses: bitnami/support/.github/workflows/item-opened.yml@main
  26. secrets: inherit