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:
Seth Flynn
2025-06-12 21:37:39 -04:00
parent d68269eca8
commit 8df20a372c
2 changed files with 6 additions and 2 deletions

View File

@@ -2,8 +2,9 @@ name: Build
on:
push:
branches-ignore:
- "renovate/**"
branches:
- "develop"
- "release-*"
paths:
# File types
- "**.cpp"

View File

@@ -2,6 +2,9 @@ name: "CodeQL Code Scanning"
on:
push:
branches:
- "develop"
- "release-*"
paths:
# File types
- "**.cpp"