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-merge.yml

36lines · modecode

1# This workflow automatically merges 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 Merge Pull Request
17
18on:
19 pull_request_target:
20 types:
21 - opened
22 - reopened
23 - synchronize
24
25jobs:
26 merge_check:
27
28 permissions:
29 contents: read
30 pull-requests: write
31 issues: write
32
33 if: |
34 github.event.pull_request.user.login == 'dependabot[bot]' || github.event.pull_request.user.login == 'uefibot'
35 uses: microsoft/mu_devops/.github/workflows/AutoMerger.yml@v10.0.0
36 secrets: inherit
37