do not run paths_ci.yml on other .yml changes, but only when .v files change

This commit is contained in:
Delyan Angelov 2025-08-07 11:22:16 +03:00
parent ae82d890b5
commit dcc22f3171
No known key found for this signature in database
GPG key ID: 66886C0F12D595ED

View file

@ -1,14 +1,21 @@
name: Path Testing CI
on:
workflow_dispatch:
push:
paths-ignore:
- '**.md'
- '**.yml'
- '!**/paths_ci.yml'
- 'cmd/tools/**'
- '!cmd/tools/builders/**.v'
pull_request:
paths-ignore:
- '**.md'
- '**.yml'
- '!**/paths_ci.yml'
- 'cmd/tools/**'
- '!cmd/tools/builders/**.v'
concurrency:
group: paths-${{ github.workflow }}-${{ github.ref == 'refs/heads/master' && github.sha || github.ref }}