Exclude irrelevant files from workflow triggers (#663)

This commit is contained in:
Changho Hwang
2025-10-23 15:52:19 -07:00
committed by GitHub
parent 58996b5c51
commit f7d1fb4492
5 changed files with 41 additions and 0 deletions

View File

@@ -5,10 +5,22 @@ on:
branches:
- main
- release/*
paths:
- 'cmake/**'
- 'src/**'
- 'include/**'
- 'CMakeLists.txt'
- '.github/workflows/codeql-analysis.yml'
pull_request:
branches:
- main
- release/*
paths:
- 'cmake/**'
- 'src/**'
- 'include/**'
- 'CMakeLists.txt'
- '.github/workflows/codeql-analysis.yml'
schedule:
- cron: "30 1 * * 1"