mirror of
https://github.com/tianocore/edk2.git
synced 2025-08-26 13:14:41 +00:00
![dependabot[bot]](/assets/img/avatar_default.png)
Bumps [github/issue-labeler](https://github.com/github/issue-labeler) from 3.1 to 3.4. - [Release notes](https://github.com/github/issue-labeler/releases) - [Commits](https://github.com/github/issue-labeler/compare/v3.1...v3.4) --- updated-dependencies: - dependency-name: github/issue-labeler dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
37 lines
926 B
YAML
37 lines
926 B
YAML
# This workflow automatically applies labels to pull requests based on regular expression matches against the content
|
|
# in the pull request.
|
|
#
|
|
# Copyright (c) Microsoft Corporation.
|
|
# SPDX-License-Identifier: BSD-2-Clause-Patent
|
|
#
|
|
# For more information, see:
|
|
# https://github.com/github/issue-labeler
|
|
|
|
name: Apply Labels Based on Message Content
|
|
|
|
on:
|
|
pull_request_target:
|
|
types:
|
|
- edited
|
|
- opened
|
|
- reopened
|
|
- synchronize
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
sync:
|
|
name: Label PR from Description
|
|
runs-on: ubuntu-latest
|
|
|
|
permissions:
|
|
contents: read
|
|
pull-requests: write
|
|
|
|
steps:
|
|
- name: Apply Labels Based on PR Description
|
|
uses: github/issue-labeler@v3.4
|
|
with:
|
|
configuration-path: .github/workflows/pr-labeler/regex.yml
|
|
enable-versioned-regex: 0
|
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|