From 4b8773ad840735c728fd2345bebacbbd628b537d Mon Sep 17 00:00:00 2001 From: Stefan Allius Date: Wed, 3 Apr 2024 21:12:42 +0200 Subject: [PATCH] add file extentions to ignore --- .github/workflows/python-app.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/.github/workflows/python-app.yml b/.github/workflows/python-app.yml index 34348ea..af96376 100644 --- a/.github/workflows/python-app.yml +++ b/.github/workflows/python-app.yml @@ -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" ]