.github/workflows/main.yml: ignore changes inside dashboards and deployment/**.yml

The dashaboards/ and deployment/**.yml do not contain files, which may change main workflow results,
so it is better to ignore them.
This commit is contained in:
Aliaksandr Valialkin 2023-11-21 12:57:39 +02:00
parent fb835ad658
commit 2b420b5c0a
No known key found for this signature in database
GPG key ID: 52C003EE2BCDB9EB

View file

@ -7,6 +7,8 @@ on:
paths-ignore:
- "docs/**"
- "**.md"
- "dashboards/**"
- "deployment/**.yml"
pull_request:
branches:
- master
@ -14,6 +16,8 @@ on:
paths-ignore:
- "docs/**"
- "**.md"
- "dashboards/**"
- "deployment/**.yml"
permissions:
contents: read