Skip to content

Commit 6f1aa9f

Browse files
Create sync_cmakebuild.yml (#1747)
1 parent 93def32 commit 6f1aa9f

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

.github/workflows/sync_cmakebuild.yml

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: Sync cmakebuild with main
2+
on:
3+
schedule:
4+
- cron: "0 * * * *"
5+
workflow_dispatch:
6+
inputs:
7+
test_label_regexp:
8+
required: false
9+
type: string
10+
jobs:
11+
build:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: actions/checkout@v3
15+
with:
16+
ref: cmakebuild
17+
- name: Sync
18+
run: |
19+
git checkout main -- ydb/ci/sync_cmakebuild.sh
20+
cp ydb/ci/sync_cmakebuild.sh ~
21+
git restore ydb/ci/sync_cmakebuild.sh
22+
~/sync_cmakebuild.sh
23+
git push

0 commit comments

Comments
 (0)