File tree Expand file tree Collapse file tree 2 files changed +31
-0
lines changed Expand file tree Collapse file tree 2 files changed +31
-0
lines changed Original file line number Diff line number Diff line change 1+ on :
2+ # cronjob trigger
3+ schedule :
4+ - cron : " 0 0 * * 1"
5+ # manual trigger
6+ workflow_dispatch :
7+ jobs :
8+ repo-sync :
9+ runs-on : ubuntu-latest
10+ # https://docs.github.com/en/actions/using-jobs/assigning-permissions-to-jobs
11+ permissions :
12+ contents : write
13+ pull-requests : write
14+
15+ steps :
16+ # To use this repository's private action, you must check out the repository
17+ - name : Checkout
18+ uses : actions/checkout@v4
19+ # https://github.com/actions/checkout#usage
20+ # uncomment if you use submodules within the source repository
21+ # with:
22+ # submodules: true
23+
24+ - name : actions-template-sync
25+ uses : AndreasAugustin/actions-template-sync@v2
26+ with :
27+ source_repo_path : ibm-client-engineering/solution-template-quarto
28+ upstream_branch : main # defaults to main
29+ pr_labels : template_sync # defaults to template_sync
Original file line number Diff line number Diff line change 1+ :!src/custom.css
2+ *
You can’t perform that action at this time.
0 commit comments