1
0
mirror of synced 2025-12-26 05:02:55 -05:00

Skip repo-sync for docs-engineering reviews (#39186)

This commit is contained in:
Kevin Heis
2023-07-18 07:29:54 -07:00
committed by GitHub
parent bb94952926
commit 54b62cded8

View File

@@ -27,7 +27,11 @@ on:
jobs:
codeowners-docs-engineering:
if: ${{ github.repository == 'github/docs-internal' && !github.event.pull_request.draft && !contains(github.event.pull_request.labels.*.name, 'engineering') }}
if: >-
${{ github.repository == 'github/docs-internal' &&
!github.event.pull_request.draft &&
!contains(github.event.pull_request.labels.*.name, 'engineering') &&
github.event.pull_request.head.ref != 'repo-sync' }}
runs-on: ubuntu-latest
env:
GH_TOKEN: ${{ secrets.DOCS_BOT_PAT_WRITEORG_PROJECT }}