ci: do not trigger workflows by changes to *.md and .gitignore

This commit is contained in:
alexey.lysiuk 2023-10-11 12:46:59 +03:00
parent 9d65ff924f
commit 72aa046802
3 changed files with 24 additions and 6 deletions

View file

@ -2,8 +2,14 @@
name: Build Targets
on:
- push
- pull_request
push:
paths-ignore:
- '**.md'
- '.gitignore'
pull_request:
paths-ignore:
- '**.md'
- '.gitignore'
jobs:
build:

View file

@ -2,8 +2,14 @@
name: Lint Code
on:
- push
- pull_request
push:
paths-ignore:
- '**.md'
- '.gitignore'
pull_request:
paths-ignore:
- '**.md'
- '.gitignore'
jobs:
lint:

View file

@ -2,8 +2,14 @@
name: Test Libraries
on:
- push
- pull_request
push:
paths-ignore:
- '**.md'
- '.gitignore'
pull_request:
paths-ignore:
- '**.md'
- '.gitignore'
jobs:
test: