Skip to content

Mirror from AzureCosmosDB/design-patterns #7

Mirror from AzureCosmosDB/design-patterns

Mirror from AzureCosmosDB/design-patterns #7

Workflow file for this run

name: 'Mirror from AzureCosmosDB/design-patterns'
on:
push:
branches:
- __mirror
schedule:
- cron: '0 5 * * *'
workflow_dispatch:
env:
REPO: https://github.com/AzureCosmosDB/design-patterns.git
jobs:
mirror:
name: Mirror repository
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Sync remote repsitory
uses: repo-sync/github-sync@v2
with:
source_repo: 'azurecosmosdb/design-patterns'
source_branch: 'main'
destination_branch: 'main'
github_token: ${{ secrets.GITHUB_TOKEN }}