microsoft/mu_feature_ffa

Public

mirrored fromhttps://github.com/microsoft/mu_feature_ffaAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
3d4b142bc3f2df66be0148459e45a92d4a1edf2c

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

.github/workflows/auto-approve.yml

33lines · modecode

1# This workflow automatically approves pull requests under certain conditions.
2#
3# NOTE: This file is automatically synchronized from Mu DevOps. Update the original file there
4# instead of the file in this repo.
5#
6# NOTE: This file uses a reusable workflow. Do not make changes to the file that should be made
7# in the common/reusable workflow.
8#
9# - Mu DevOps Repo: https://github.com/microsoft/mu_devops
10# - File Sync Settings: https://github.com/microsoft/mu_devops/blob/main/.sync/Files.yml
11#
12# Copyright (c) Microsoft Corporation.
13# SPDX-License-Identifier: BSD-2-Clause-Patent
14#
15
16name: Auto Approve Pull Request
17
18on:
19 pull_request_target:
20 types:
21 - opened
22 - reopened
23
24jobs:
25 approval_check:
26
27 permissions:
28 pull-requests: write
29
30 if: |
31 github.event.pull_request.user.login == 'dependabot[bot]' || github.event.pull_request.user.login == 'uefibot'
32 uses: microsoft/mu_devops/.github/workflows/AutoApprover.yml@v10.0.0
33 secrets: inherit
34