diff options
author | alexv-smirnov <alex@ydb.tech> | 2023-03-28 21:29:53 +0300 |
---|---|---|
committer | alexv-smirnov <alex@ydb.tech> | 2023-03-28 21:29:53 +0300 |
commit | a30195c57a0e043158d80a4385350eee326197f1 (patch) | |
tree | 07f4da8c7a6cbade0f8f57a70e9bc965de957654 | |
parent | fe95bd00f0285446bcc12cef35a29f86c3e049e2 (diff) | |
download | ydb-a30195c57a0e043158d80a4385350eee326197f1.tar.gz |
github pr check flow
-rw-r--r-- | .github/workflows/pr_check.yml | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/.github/workflows/pr_check.yml b/.github/workflows/pr_check.yml new file mode 100644 index 0000000000..9ef428683c --- /dev/null +++ b/.github/workflows/pr_check.yml @@ -0,0 +1,15 @@ +name: PR check +on: + pull_request: + types: [ opened, edited, reopened ] + branches: + - 'main' + paths: + - 'ydb/**' + +jobs: + build_and_test: + uses: ./.github/workflows/build_and_test_ondemand.yml + with: + test_label_regexp: '(SMALL|MEDIUM)' + secrets: inherit |