Skip to content

Commit 2d4c89d

Browse files
Merge pull request #15 from ibm-client-engineering/bo-updates
added auto-sync files
2 parents 07315d4 + 10ed55f commit 2d4c89d

File tree

2 files changed

+31
-0
lines changed

2 files changed

+31
-0
lines changed
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
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

.templatesyncignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
:!src/custom.css
2+
*

0 commit comments

Comments
 (0)