ci: Prevent workflow runs on trivial file changes

This commit is contained in:
2026-06-25 16:56:02 +05:30
parent bd4d4d171d
commit ba482aab1d
2 changed files with 12 additions and 0 deletions

View File

@@ -4,6 +4,10 @@ on:
push:
branches:
- master
paths-ignore:
- '**.md'
- '.gitignore'
- 'docs/**'
jobs:
test:

View File

@@ -4,9 +4,17 @@ on:
push:
branches-ignore:
- master
paths-ignore:
- '**.md'
- '.gitignore'
- 'docs/**'
pull_request:
branches:
- master
paths-ignore:
- '**.md'
- '.gitignore'
- 'docs/**'
jobs:
test: