Skip to content

.github/workflows/repo-sync.yml #561

.github/workflows/repo-sync.yml

.github/workflows/repo-sync.yml #561

Workflow file for this run

## @file
# Sync cmocka repo to local repo.
#
# Copyright (c) 2024, Intel Corporation. All rights reserved.<BR>
# SPDX-License-Identifier: BSD-2-Clause-Patent
#
##
on:
schedule:
- cron: "0 0 * * *"
workflow_dispatch:
jobs:
repo-sync:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
persist-credentials: false
- name: repo-sync
uses: repo-sync/github-sync@v2
with:
source_repo: https://git.cryptomilk.org/projects/cmocka.git
source_branch: "*"
destination_branch: "*"
sync_tags: "true"
github_token: ${{ secrets.GITHUB_TOKEN }}