aboutsummaryrefslogtreecommitdiffstats
path: root/.github/workflows/pr_check.yml
blob: a259efee92ed8eead6f11966effe27e0ce3b0516 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
name: PR check
on: 
  pull_request_target:
    branches:
      - 'main'
    paths-ignore:
      - 'ydb/docs/**'
      
jobs:
  build_and_test:
    uses: ./.github/workflows/build_and_test_ondemand.yml
    if: github.event.review.state == 'approved'
    with:
      test_label_regexp: '(SMALL|MEDIUM)'
    secrets: inherit