Last change
on this file since 108794 was 108794, checked in by vboxsync, 2 weeks ago |
Devices/EFI/FirmwareNew: Merge edk2-stable202502 from the vendor branch and make it build for the important platforms, bugref:4643
|
-
Property svn:eol-style
set to
native
|
File size:
890 bytes
|
Line | |
---|
1 | # This workflow automatically applies labels to pull requests based on regular expression matches against the content
|
---|
2 | # in the pull request.
|
---|
3 | #
|
---|
4 | # Copyright (c) Microsoft Corporation.
|
---|
5 | # SPDX-License-Identifier: BSD-2-Clause-Patent
|
---|
6 | #
|
---|
7 | # For more information, see:
|
---|
8 | # https://github.com/github/issue-labeler
|
---|
9 |
|
---|
10 | name: Apply Labels Based on Message Content
|
---|
11 |
|
---|
12 | on:
|
---|
13 | pull_request_target:
|
---|
14 | types:
|
---|
15 | - edited
|
---|
16 | - opened
|
---|
17 | - reopened
|
---|
18 | - synchronize
|
---|
19 | workflow_dispatch:
|
---|
20 |
|
---|
21 | jobs:
|
---|
22 | sync:
|
---|
23 | name: Label PR from Description
|
---|
24 | runs-on: ubuntu-latest
|
---|
25 |
|
---|
26 | permissions:
|
---|
27 | contents: read
|
---|
28 | pull-requests: write
|
---|
29 |
|
---|
30 | steps:
|
---|
31 | - name: Apply Labels Based on PR Description
|
---|
32 | uses: github/[email protected]
|
---|
33 | with:
|
---|
34 | configuration-path: .github/workflows/pr-labeler/regex.yml
|
---|
35 | enable-versioned-regex: 0
|
---|
36 | repo-token: ${{ secrets.GITHUB_TOKEN }}
|
---|
Note:
See
TracBrowser
for help on using the repository browser.