template sync #4
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
# File: .github/workflows/template-sync.yml | |
name: template sync | |
on: | |
schedule: | |
# every month on the first day | |
- cron: "0 0 1 * *" | |
workflow_dispatch: | |
jobs: | |
repo-sync: | |
runs-on: ubuntu-latest | |
steps: | |
# To use this repository's private action, you must check out the repository | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: actions-template-sync | |
uses: AndreasAugustin/actions-template-sync@v1.1.9 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
source_repo_path: elixir-europe-training/ELIXIR-TrP-LessonTemplate-MkDocs | |
upstream_branch: main |