add file extentions to ignore

This commit is contained in:
Stefan Allius
2024-04-03 21:12:42 +02:00
parent e7294e4932
commit 4b8773ad84

View File

@@ -6,6 +6,17 @@ name: Python application
on:
push:
branches: [ "main" ]
paths-ignore:
- '**.md' # Do no build on *.md changes
- '**.yml' # Do no build on *.yml changes
- '**.yaml' # Do no build on *.yaml changes
- '**.yuml' # Do no build on *.yuml changes
- '**.svg' # Do no build on *.svg changes
- '**.json' # Do no build on *.json changes
- '**.cfg' # Do no build on *.cfg changes
- '**.gitignore' # Do no build on *.gitignore changes
- '**.dockerfile' # Do no build on *.dockerfile changes
- '**.sh' # Do no build on *.sh changes
pull_request:
branches: [ "main" ]