aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexSm <alex@ydb.tech>2024-02-08 17:54:58 +0100
committerGitHub <noreply@github.com>2024-02-08 17:54:58 +0100
commit6f1aa9f971ed28bb521cb3309dc93865cc0c993c (patch)
tree1ad165898f1d26750852cf8c5e40306f32e414e6
parent93def32ebe72f6f9db35f87be7734b63b3ee1530 (diff)
downloadydb-6f1aa9f971ed28bb521cb3309dc93865cc0c993c.tar.gz
Create sync_cmakebuild.yml (#1747)
-rw-r--r--.github/workflows/sync_cmakebuild.yml23
1 files changed, 23 insertions, 0 deletions
diff --git a/.github/workflows/sync_cmakebuild.yml b/.github/workflows/sync_cmakebuild.yml
new file mode 100644
index 0000000000..878675d9ef
--- /dev/null
+++ b/.github/workflows/sync_cmakebuild.yml
@@ -0,0 +1,23 @@
+name: Sync cmakebuild with main
+on:
+ schedule:
+ - cron: "0 * * * *"
+ workflow_dispatch:
+ inputs:
+ test_label_regexp:
+ required: false
+ type: string
+jobs:
+ build:
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v3
+ with:
+ ref: cmakebuild
+ - name: Sync
+ run: |
+ git checkout main -- ydb/ci/sync_cmakebuild.sh
+ cp ydb/ci/sync_cmakebuild.sh ~
+ git restore ydb/ci/sync_cmakebuild.sh
+ ~/sync_cmakebuild.sh
+ git push