summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Breunig <christian@breunig.cc>2024-07-11 16:47:04 +0200
committerGitHub <noreply@github.com>2024-07-11 16:47:04 +0200
commit423e710e6d6962249c72bd3b8c6f09e0e127779d (patch)
treec1da15e7018ed2e322f8bdc6ebf3c7f8da79f487
parent14d951f7faf0e1f24e0053b5745fe77974e2105a (diff)
parente6d765ed399d0a3aec91c9cfeef67d633779d64b (diff)
downloadvyos-1x-423e710e6d6962249c72bd3b8c6f09e0e127779d.tar.gz
vyos-1x-423e710e6d6962249c72bd3b8c6f09e0e127779d.zip
Merge pull request #3801 from kumvijaya/sagitta
T6564: workflow trigger restriction for sagitta
-rw-r--r--.github/workflows/build-package.yml4
-rw-r--r--.github/workflows/check-unused-imports.yml4
-rw-r--r--.github/workflows/codeql.yml8
3 files changed, 16 insertions, 0 deletions
diff --git a/.github/workflows/build-package.yml b/.github/workflows/build-package.yml
index 12c435399..8cd0b85ea 100644
--- a/.github/workflows/build-package.yml
+++ b/.github/workflows/build-package.yml
@@ -3,6 +3,10 @@ on:
pull_request:
branches:
- sagitta
+ paths:
+ - '**'
+ - '!.github/**'
+ - '!**/*.md'
jobs:
package-build:
diff --git a/.github/workflows/check-unused-imports.yml b/.github/workflows/check-unused-imports.yml
index 4c1eff794..ec6e835dc 100644
--- a/.github/workflows/check-unused-imports.yml
+++ b/.github/workflows/check-unused-imports.yml
@@ -3,6 +3,10 @@ on:
pull_request_target:
branches:
- sagitta
+ paths:
+ - '**'
+ - '!.github/**'
+ - '!**/*.md'
workflow_dispatch:
permissions:
diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml
index 665cdda01..ebaadac70 100644
--- a/.github/workflows/codeql.yml
+++ b/.github/workflows/codeql.yml
@@ -4,10 +4,18 @@ on:
push:
branches:
- sagitta
+ paths:
+ - '**'
+ - '!.github/**'
+ - '!**/*.md'
pull_request:
# The branches below must be a subset of the branches above
branches:
- sagitta
+ paths:
+ - '**'
+ - '!.github/**'
+ - '!**/*.md'
schedule:
- cron: '22 10 * * 0'
workflow_dispatch: