Improve workflow triggers to ensure correct run time (#7378)
* Improve workflow triggers to ensure correct run time * Update ChangeLog
This commit is contained in:
5
.github/workflows/codeql-analysis.yml
vendored
5
.github/workflows/codeql-analysis.yml
vendored
@ -3,6 +3,11 @@ name: "CodeQL Analysis"
|
||||
on:
|
||||
workflow_dispatch:
|
||||
pull_request:
|
||||
types:
|
||||
- opened
|
||||
- reopened
|
||||
- synchronize
|
||||
- ready_for_review
|
||||
push:
|
||||
branches: [master]
|
||||
|
||||
|
||||
6
.github/workflows/lint-changelog.yml
vendored
6
.github/workflows/lint-changelog.yml
vendored
@ -7,7 +7,13 @@
|
||||
|
||||
name: "Lint ChangeLog"
|
||||
on:
|
||||
workflow_dispatch:
|
||||
pull_request:
|
||||
types:
|
||||
- opened
|
||||
- reopened
|
||||
- synchronize
|
||||
- ready_for_review
|
||||
|
||||
jobs:
|
||||
lint-changelog:
|
||||
|
||||
7
.github/workflows/lint-source.yml
vendored
7
.github/workflows/lint-source.yml
vendored
@ -1,8 +1,15 @@
|
||||
# Lints CMake config and C++ source code.
|
||||
|
||||
name: "Lint source code"
|
||||
|
||||
on:
|
||||
workflow_dispatch:
|
||||
pull_request:
|
||||
types:
|
||||
- opened
|
||||
- reopened
|
||||
- synchronize
|
||||
- ready_for_review
|
||||
|
||||
jobs:
|
||||
lint-cmake-files:
|
||||
|
||||
9
.github/workflows/sonarcloud-analysis.yml
vendored
9
.github/workflows/sonarcloud-analysis.yml
vendored
@ -1,9 +1,14 @@
|
||||
name: "SonarCloud Analysis"
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [master]
|
||||
workflow_dispatch:
|
||||
pull_request:
|
||||
types:
|
||||
- opened
|
||||
- reopened
|
||||
- synchronize
|
||||
- ready_for_review
|
||||
push:
|
||||
branches: [master]
|
||||
|
||||
concurrency:
|
||||
|
||||
Reference in New Issue
Block a user