Bump submodules/googletest from 8a6feab
to d1467f5
(#3856)
#1220
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Mirror | |
on: | |
push: | |
branches: | |
- main | |
- release/* | |
- prerelease/* | |
tags: | |
- v* | |
permissions: read-all | |
jobs: | |
mirror: | |
permissions: | |
contents: read # for actions/checkout to fetch code | |
name: Mirror | |
runs-on: windows-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac | |
with: | |
fetch-depth: 0 | |
- name: Sync mirror | |
shell: pwsh | |
env: | |
AzDO_PAT: ${{ secrets.AZDO_PAT }} | |
Source: ${{ github.ref }} # refs/heads/<branch_name> or refs/tags/<tag_name> | |
run: scripts/sync-mirror.ps1 -Source $env:Source |