diff options
author | AlexSm <alex@ydb.tech> | 2024-02-08 17:54:58 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-08 17:54:58 +0100 |
commit | 6f1aa9f971ed28bb521cb3309dc93865cc0c993c (patch) | |
tree | 1ad165898f1d26750852cf8c5e40306f32e414e6 | |
parent | 93def32ebe72f6f9db35f87be7734b63b3ee1530 (diff) | |
download | ydb-6f1aa9f971ed28bb521cb3309dc93865cc0c993c.tar.gz |
Create sync_cmakebuild.yml (#1747)
-rw-r--r-- | .github/workflows/sync_cmakebuild.yml | 23 |
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 |