diff options
| -rw-r--r-- | .github/workflows/check-query-files-and-compilation.yml | 14 | ||||
| -rw-r--r-- | .github/workflows/tests.yml | 14 |
2 files changed, 26 insertions, 2 deletions
diff --git a/.github/workflows/check-query-files-and-compilation.yml b/.github/workflows/check-query-files-and-compilation.yml index 05bf623b5..09c1ed6d2 100644 --- a/.github/workflows/check-query-files-and-compilation.yml +++ b/.github/workflows/check-query-files-and-compilation.yml @@ -1,6 +1,18 @@ name: Parser compilation and query file check -on: [push, pull_request] +on: + push: + branches: + - 'master' + pull_request: + types: [opened, synchronize, reopened, ready_for_review] + branches: + - 'master' + +# Cancel any in-progress CI runs for a PR if it is updated +concurrency: + group: ${{ github.workflow }}-${{ github.event_name == 'pull_request' && github.head_ref || github.sha }} + cancel-in-progress: true jobs: check_compilation_unix_like: diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 74e78c884..0a19311d1 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -1,6 +1,18 @@ name: Tests -on: [push, pull_request] +on: + push: + branches: + - 'master' + pull_request: + types: [opened, synchronize, reopened, ready_for_review] + branches: + - 'master' + +# Cancel any in-progress CI runs for a PR if it is updated +concurrency: + group: ${{ github.workflow }}-${{ github.event_name == 'pull_request' && github.head_ref || github.sha }} + cancel-in-progress: true jobs: check_compilation_unix_like: |
