microsoft/mu_feature_ffa
Publicmirrored fromhttps://github.com/microsoft/mu_feature_ffaAvailable
.github/workflows/label-issues.yml
35lines · modecode
| 1 | # This workflow automatically applies labels to GitHub issues and pull requests based on the |
| 2 | # file paths in a pull request or content in the body of an issue or pull request. |
| 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 | # NOTE: This file uses a reusable workflow. Do not make changes to the file that should be made |
| 8 | # in the common/reusable workflow. |
| 9 | # |
| 10 | # - Mu DevOps Repo: https://github.com/microsoft/mu_devops |
| 11 | # - File Sync Settings: https://github.com/microsoft/mu_devops/blob/main/.sync/Files.yml |
| 12 | # |
| 13 | # Copyright (c) Microsoft Corporation. |
| 14 | # SPDX-License-Identifier: BSD-2-Clause-Patent |
| 15 | # |
| 16 | |
| 17 | name: Apply Issue and PR Labels |
| 18 | |
| 19 | on: |
| 20 | issues: |
| 21 | types: |
| 22 | - edited |
| 23 | - opened |
| 24 | pull_request_target: |
| 25 | types: |
| 26 | - edited |
| 27 | - opened |
| 28 | - reopened |
| 29 | - synchronize |
| 30 | workflow_dispatch: |
| 31 | |
| 32 | jobs: |
| 33 | apply: |
| 34 | uses: microsoft/mu_devops/.github/workflows/Labeler.yml@v17.0.1 |
| 35 | secrets: inherit |
| 36 | |