123456789101112131415161718192021222324252627 |
- # Copyright Broadcom, Inc. All Rights Reserved.
- # SPDX-License-Identifier: APACHE-2.0
- # This workflow is built to manage the triage support by using GH issues.
- # NOTE: This workflow is maintained in the https://github.com/bitnami/support repository
- name: '[Support] Organize triage'
- on:
- issues:
- types:
- - reopened
- - opened
- pull_request_target:
- types:
- - reopened
- - opened
- permissions:
- contents: read
- pull-requests: write
- issues: write
- # Avoid concurrency over the same issue
- concurrency:
- group: card-movement-${{ github.event.issue != null && github.event.issue.number || github.event.number }}
- jobs:
- call-triage-workflow:
- if: ${{ github.repository_owner == 'bitnami' }}
- uses: bitnami/support/.github/workflows/item-opened.yml@main
- secrets: inherit
|