mirror of
https://github.com/microsoft/agent-framework.git
synced 2026-06-16 21:04:09 +08:00
e8a7ffbc14
* Skip flacky UT * Ignore org-level GitHub App checks in merge-gatekeeper Add Cleanup artifacts, Agent, Prepare, and Upload results to the ignored list. These are check runs created by an org-level GitHub App (MSDO), not by any workflow in this repo, and their transient failures should not block merges. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --------- Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
36 lines
1.3 KiB
YAML
36 lines
1.3 KiB
YAML
name: Merge Gatekeeper
|
|
|
|
on:
|
|
pull_request:
|
|
branches: [ "main", "feature*" ]
|
|
merge_group:
|
|
branches: ["main"]
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
merge-gatekeeper:
|
|
runs-on: ubuntu-latest
|
|
# Restrict permissions of the GITHUB_TOKEN.
|
|
# Docs: https://docs.github.com/en/actions/using-jobs/assigning-permissions-to-jobs
|
|
permissions:
|
|
checks: read
|
|
statuses: read
|
|
steps:
|
|
- name: Run Merge Gatekeeper
|
|
# NOTE: v1 is updated to reflect the latest v1.x.y. Please use any tag/branch that suits your needs:
|
|
# https://github.com/upsidr/merge-gatekeeper/tags
|
|
# https://github.com/upsidr/merge-gatekeeper/branches
|
|
uses: upsidr/merge-gatekeeper@v1
|
|
if: github.event_name == 'pull_request'
|
|
with:
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
timeout: 3600
|
|
interval: 30
|
|
# "Cleanup artifacts", "Agent", "Prepare", and "Upload results" are check runs
|
|
# created by an org-level GitHub App (MSDO), not by any workflow in this repo.
|
|
# They are outside our control and their transient failures should not block merges.
|
|
ignored: CodeQL,CodeQL analysis (csharp),Cleanup artifacts,Agent,Prepare,Upload results
|