diff options
author | Christian Breunig <christian@breunig.cc> | 2024-07-11 16:48:27 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-11 16:48:27 +0200 |
commit | a79b59070ca0039aec0a43a68e427b1d75b40cd0 (patch) | |
tree | e0e47b51efd06f71f4afb9fad0940c414c0b0c85 /.github | |
parent | a967d32c128a03b0ae1b49a008b6637c4be2e1ef (diff) | |
parent | 0829174325f18bdc202629f9c8411c990b0a6aa3 (diff) | |
download | vyos-1x-equuleus.tar.gz vyos-1x-equuleus.zip |
Merge pull request #3803 from kumvijaya/equuleusequuleus
T6564: workflow trigger restrictions for equuleus
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/build-package.yml | 4 | ||||
-rw-r--r-- | .github/workflows/check-unused-imports.yml | 4 | ||||
-rw-r--r-- | .github/workflows/codeql.yml | 10 |
3 files changed, 17 insertions, 1 deletions
diff --git a/.github/workflows/build-package.yml b/.github/workflows/build-package.yml index 8ebb7dfcb..3908c4737 100644 --- a/.github/workflows/build-package.yml +++ b/.github/workflows/build-package.yml @@ -3,6 +3,10 @@ on: pull_request: branches: - equuleus + paths: + - '**' + - '!.github/**' + - '!**/*.md' jobs: package-build: diff --git a/.github/workflows/check-unused-imports.yml b/.github/workflows/check-unused-imports.yml index 58f8cff14..412b67b1b 100644 --- a/.github/workflows/check-unused-imports.yml +++ b/.github/workflows/check-unused-imports.yml @@ -3,6 +3,10 @@ on: pull_request_target: branches: - equuleus + paths: + - '**' + - '!.github/**' + - '!**/*.md' workflow_dispatch: permissions: diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 92a2dc653..98c12583a 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -4,10 +4,18 @@ on: push: branches: - equuleus - pull_request: + paths: + - '**' + - '!.github/**' + - '!**/*.md' + pull_request_target: # The branches below must be a subset of the branches above branches: - equuleus + paths: + - '**' + - '!.github/**' + - '!**/*.md' schedule: - cron: '22 10 * * 0' workflow_dispatch: |