Merge pull request #218 from github/marcogario/reduce_ci_jobs
Reduce triggers in workflows
This commit is contained in:
commit
5166e750e9
3 changed files with 20 additions and 11 deletions
5
.github/workflows/codeql.yml
vendored
5
.github/workflows/codeql.yml
vendored
|
|
@ -1,6 +1,9 @@
|
|||
name: "CodeQL action"
|
||||
|
||||
on: [push, pull_request]
|
||||
on:
|
||||
push:
|
||||
branches: [main, v1]
|
||||
pull_request:
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
|
|
|||
5
.github/workflows/integration-testing.yml
vendored
5
.github/workflows/integration-testing.yml
vendored
|
|
@ -1,6 +1,9 @@
|
|||
name: "Integration Testing"
|
||||
|
||||
on: [push, pull_request]
|
||||
on:
|
||||
push:
|
||||
branches: [main, v1]
|
||||
pull_request:
|
||||
|
||||
jobs:
|
||||
multi-language-repo_test-autodetect-languages:
|
||||
|
|
|
|||
5
.github/workflows/pr-checks.yml
vendored
5
.github/workflows/pr-checks.yml
vendored
|
|
@ -1,6 +1,9 @@
|
|||
name: "PR checks"
|
||||
|
||||
on: [push, pull_request]
|
||||
on:
|
||||
push:
|
||||
branches: [main, v1]
|
||||
pull_request:
|
||||
|
||||
jobs:
|
||||
lint-js:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue