aboutsummaryrefslogtreecommitdiffstats
path: root/.github/workflows/pr_check.yml
blob: d8d326c366cf4f3411f82d4e7a07a091832a9b7b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
name: PR check
on: 
  pull_request_target:
    types: [ opened, edited, reopened ]
    branches:
      - 'main'
    paths-ignore:
      - 'ydb/docs/**'
      
jobs:
  build_and_test:
    uses: ./.github/workflows/build_and_test_ondemand.yml
    with:
      test_label_regexp: '(SMALL|MEDIUM)'
    secrets: inherit