From 5d23177b3b0b7f770f796ef79c032615657d8bc4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9CThavachelvam?= <“thavaahariharangit@git.com”> Date: Wed, 24 Apr 2024 15:25:12 +0100 Subject: [PATCH 1/3] #9508: add paths ignore to dependncy review.yml --- .github/workflows/dependency-review.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/workflows/dependency-review.yml b/.github/workflows/dependency-review.yml index 1495c08d79c..7b60899fe9b 100644 --- a/.github/workflows/dependency-review.yml +++ b/.github/workflows/dependency-review.yml @@ -1,5 +1,12 @@ name: Dependency Review -on: [pull_request] # yamllint disable-line rule:truthy +on: + pull_request: + # yamllint disable-line rule:truthy + branches: [ main ] + paths-ignore: + - '*/spec/fixtures/**' + - '*/helpers/test/*/fixtures/**' + - 'common/lib/dependabot.rb' permissions: contents: read From c92f0fffbcee02d144fc9cbcff680db1ac31e7c5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9CThavachelvam?= <“thavaahariharangit@git.com”> Date: Wed, 24 Apr 2024 15:34:25 +0100 Subject: [PATCH 2/3] #9508: adding ignore helper fixtures to codeql-analysis. --- .github/workflows/codeql-analysis.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index ca388beb47c..8a027063b45 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -19,6 +19,7 @@ on: # yamllint disable-line rule:truthy branches: [ main ] paths-ignore: - '*/spec/fixtures/**' + - '*/helpers/test/*/fixtures/**' - 'common/lib/dependabot.rb' schedule: - cron: '41 4 * * 3' From 50e89a1c3f3ed6428f3f749936a64f09909c2c22 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9CThavachelvam?= <“thavaahariharangit@git.com”> Date: Wed, 24 Apr 2024 16:29:33 +0100 Subject: [PATCH 3/3] #9562: Updating the review comments.'need to stay on the same line as on: in order to be honored by YAMLLint'. --- .github/workflows/dependency-review.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/dependency-review.yml b/.github/workflows/dependency-review.yml index 7b60899fe9b..21ae7d9c2ce 100644 --- a/.github/workflows/dependency-review.yml +++ b/.github/workflows/dependency-review.yml @@ -1,7 +1,6 @@ name: Dependency Review -on: +on: # yamllint disable-line rule:truthy pull_request: - # yamllint disable-line rule:truthy branches: [ main ] paths-ignore: - '*/spec/fixtures/**'