mirror of
https://github.com/PrismLauncher/PrismLauncher.git
synced 2026-06-29 01:54:20 +03:00
ci: don't run ci on custom in-tree branches
This basically duplicates runs when a PR is opened from an in-tree branch. If we want to run one without a PR, we can use workflow_dispatch anyways Signed-off-by: Seth Flynn <getchoo@tuta.io>
This commit is contained in:
parent
d68269eca8
commit
8df20a372c
2 changed files with 6 additions and 2 deletions
5
.github/workflows/build.yml
vendored
5
.github/workflows/build.yml
vendored
|
|
@ -2,8 +2,9 @@ name: Build
|
|||
|
||||
on:
|
||||
push:
|
||||
branches-ignore:
|
||||
- "renovate/**"
|
||||
branches:
|
||||
- "develop"
|
||||
- "release-*"
|
||||
paths:
|
||||
# File types
|
||||
- "**.cpp"
|
||||
|
|
|
|||
3
.github/workflows/codeql.yml
vendored
3
.github/workflows/codeql.yml
vendored
|
|
@ -2,6 +2,9 @@ name: "CodeQL Code Scanning"
|
|||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- "develop"
|
||||
- "release-*"
|
||||
paths:
|
||||
# File types
|
||||
- "**.cpp"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue