From 18fc53a09918e35ec1db4d1c0295a47e5ae4d1a8 Mon Sep 17 00:00:00 2001 From: Ismo Vuorinen Date: Wed, 18 Mar 2026 19:39:46 +0200 Subject: [PATCH] fix(ci): clean up workflow path filters MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Remove non-existent action.yaml paths from action-security workflow. Fix glob patterns (**.md → **/*.md) in pr-lint workflow. Remove unused trigger paths (yarn.lock, pnpm-lock.yaml, requirements.txt, .github/labels.yml, docs/**) from security-suite and sync-labels workflows. --- .github/workflows/action-security.yml | 2 -- .github/workflows/pr-lint.yml | 10 ++++------ .github/workflows/security-suite.yml | 4 ---- .github/workflows/sync-labels.yml | 1 - 4 files changed, 4 insertions(+), 13 deletions(-) diff --git a/.github/workflows/action-security.yml b/.github/workflows/action-security.yml index 94c5902..e38d7ea 100644 --- a/.github/workflows/action-security.yml +++ b/.github/workflows/action-security.yml @@ -6,11 +6,9 @@ on: push: paths: - '**/action.yml' - - '**/action.yaml' pull_request: paths: - '**/action.yml' - - '**/action.yaml' merge_group: concurrency: diff --git a/.github/workflows/pr-lint.yml b/.github/workflows/pr-lint.yml index aba9c48..c506ead 100644 --- a/.github/workflows/pr-lint.yml +++ b/.github/workflows/pr-lint.yml @@ -8,19 +8,17 @@ on: - main - master paths-ignore: - - '**.md' - - 'docs/**' + - '**/*.md' - '.github/*.md' - - 'LICENSE' + - 'LICENSE.md' pull_request: branches: - main - master paths-ignore: - - '**.md' - - 'docs/**' + - '**/*.md' - '.github/*.md' - - 'LICENSE' + - 'LICENSE.md' merge_group: env: diff --git a/.github/workflows/security-suite.yml b/.github/workflows/security-suite.yml index ffa73fd..175524e 100644 --- a/.github/workflows/security-suite.yml +++ b/.github/workflows/security-suite.yml @@ -7,16 +7,12 @@ on: paths: - '**/package.json' - '**/package-lock.json' - - '**/yarn.lock' - - '**/pnpm-lock.yaml' - - '**/requirements.txt' - '**/Dockerfile' - '**/*.py' - '**/*.js' - '**/*.ts' - '**/*.yml' - '**/*.yaml' - - '.github/workflows/**' permissions: {} diff --git a/.github/workflows/sync-labels.yml b/.github/workflows/sync-labels.yml index 070aa0e..b4e5a33 100644 --- a/.github/workflows/sync-labels.yml +++ b/.github/workflows/sync-labels.yml @@ -8,7 +8,6 @@ on: - main - master paths: - - '.github/labels.yml' - '.github/workflows/sync-labels.yml' - 'sync-labels/action.yml' - 'sync-labels/labels.yml'