mirror of
https://github.com/ivuorinen/actions.git
synced 2026-03-19 00:00:27 +00:00
fix(ci): clean up workflow path filters
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.
This commit is contained in:
2
.github/workflows/action-security.yml
vendored
2
.github/workflows/action-security.yml
vendored
@@ -6,11 +6,9 @@ on:
|
|||||||
push:
|
push:
|
||||||
paths:
|
paths:
|
||||||
- '**/action.yml'
|
- '**/action.yml'
|
||||||
- '**/action.yaml'
|
|
||||||
pull_request:
|
pull_request:
|
||||||
paths:
|
paths:
|
||||||
- '**/action.yml'
|
- '**/action.yml'
|
||||||
- '**/action.yaml'
|
|
||||||
merge_group:
|
merge_group:
|
||||||
|
|
||||||
concurrency:
|
concurrency:
|
||||||
|
|||||||
10
.github/workflows/pr-lint.yml
vendored
10
.github/workflows/pr-lint.yml
vendored
@@ -8,19 +8,17 @@ on:
|
|||||||
- main
|
- main
|
||||||
- master
|
- master
|
||||||
paths-ignore:
|
paths-ignore:
|
||||||
- '**.md'
|
- '**/*.md'
|
||||||
- 'docs/**'
|
|
||||||
- '.github/*.md'
|
- '.github/*.md'
|
||||||
- 'LICENSE'
|
- 'LICENSE.md'
|
||||||
pull_request:
|
pull_request:
|
||||||
branches:
|
branches:
|
||||||
- main
|
- main
|
||||||
- master
|
- master
|
||||||
paths-ignore:
|
paths-ignore:
|
||||||
- '**.md'
|
- '**/*.md'
|
||||||
- 'docs/**'
|
|
||||||
- '.github/*.md'
|
- '.github/*.md'
|
||||||
- 'LICENSE'
|
- 'LICENSE.md'
|
||||||
merge_group:
|
merge_group:
|
||||||
|
|
||||||
env:
|
env:
|
||||||
|
|||||||
4
.github/workflows/security-suite.yml
vendored
4
.github/workflows/security-suite.yml
vendored
@@ -7,16 +7,12 @@ on:
|
|||||||
paths:
|
paths:
|
||||||
- '**/package.json'
|
- '**/package.json'
|
||||||
- '**/package-lock.json'
|
- '**/package-lock.json'
|
||||||
- '**/yarn.lock'
|
|
||||||
- '**/pnpm-lock.yaml'
|
|
||||||
- '**/requirements.txt'
|
|
||||||
- '**/Dockerfile'
|
- '**/Dockerfile'
|
||||||
- '**/*.py'
|
- '**/*.py'
|
||||||
- '**/*.js'
|
- '**/*.js'
|
||||||
- '**/*.ts'
|
- '**/*.ts'
|
||||||
- '**/*.yml'
|
- '**/*.yml'
|
||||||
- '**/*.yaml'
|
- '**/*.yaml'
|
||||||
- '.github/workflows/**'
|
|
||||||
|
|
||||||
permissions: {}
|
permissions: {}
|
||||||
|
|
||||||
|
|||||||
1
.github/workflows/sync-labels.yml
vendored
1
.github/workflows/sync-labels.yml
vendored
@@ -8,7 +8,6 @@ on:
|
|||||||
- main
|
- main
|
||||||
- master
|
- master
|
||||||
paths:
|
paths:
|
||||||
- '.github/labels.yml'
|
|
||||||
- '.github/workflows/sync-labels.yml'
|
- '.github/workflows/sync-labels.yml'
|
||||||
- 'sync-labels/action.yml'
|
- 'sync-labels/action.yml'
|
||||||
- 'sync-labels/labels.yml'
|
- 'sync-labels/labels.yml'
|
||||||
|
|||||||
Reference in New Issue
Block a user