microsoft/mu_feature_ffa
Publicmirrored from https://github.com/microsoft/mu_feature_ffaAvailable
.github/workflows/triage-issues.yml
24lines · modecode
| 1 | # This workflow assists with initial triage of new issues by applying |
| 2 | # labels based on data provided in the issue. |
| 3 | # |
| 4 | # NOTE: This file is automatically synchronized from Mu DevOps. Update the original file there |
| 5 | # instead of the file in this repo. |
| 6 | # |
| 7 | # - Mu DevOps Repo: https://github.com/microsoft/mu_devops |
| 8 | # - File Sync Settings: https://github.com/microsoft/mu_devops/blob/main/.sync/Files.yml |
| 9 | # |
| 10 | # Copyright (c) Microsoft Corporation. |
| 11 | # SPDX-License-Identifier: BSD-2-Clause-Patent |
| 12 | # |
| 13 | |
| 14 | name: Initial Triage for New Issue |
| 15 | |
| 16 | on: |
| 17 | issues: |
| 18 | types: [ opened ] |
| 19 | |
| 20 | jobs: |
| 21 | triage: |
| 22 | |
| 23 | uses: microsoft/mu_devops/.github/workflows/IssueTriager.yml@v18.0.0 |
| 24 | secrets: inherit |
| 25 | |