Skip to content
This repository has been archived by the owner on Mar 21, 2024. It is now read-only.

.github/workflows/mirror-main-branch-to-master-branch.yml #277

.github/workflows/mirror-main-branch-to-master-branch.yml

.github/workflows/mirror-main-branch-to-master-branch.yml #277

on:
push:
branches:
- "main"
jobs:
mirror-main-branch-to-master-branch:
name: Mirror main branch to master branch
runs-on: ubuntu-latest
steps:
- name: Mirror main branch to master branch
id: mirror
uses: google/mirror-branch-action@v1.0
with:
source: "main"
dest: "master"
github-token: ${{ secrets.GITHUB_TOKEN }}