comments.yml 624 B

123456789101112131415161718192021
  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] Comments based card movements'
  5. on:
  6. issue_comment:
  7. types:
  8. - created
  9. permissions:
  10. contents: read
  11. pull-requests: write
  12. issues: write
  13. # Avoid concurrency over the same issue
  14. concurrency:
  15. group: card-movement-${{ github.event.issue.number }}
  16. jobs:
  17. call-comments-workflow:
  18. if: ${{ github.repository_owner == 'bitnami' }}
  19. uses: bitnami/support/.github/workflows/comment-created.yml@main
  20. secrets: inherit