Merge pull request #224 from github/update-codeql-submodule-108329637… #100
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
# The default branch is "main", but older checkouts may still use "master". | |
# This workflow keeps "master" up to date with "main". | |
name: Mirror main to master | |
on: | |
push: | |
branches: [ main ] | |
jobs: | |
mirror-main-to-master: | |
runs-on: ubuntu-latest | |
if: github.repository == 'github/vscode-codeql-starter' | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Push main to master | |
run: git push origin main:master |