From e63d1a21e779b3d84707622b5ac67c0187fae0ff Mon Sep 17 00:00:00 2001 From: Arne Tarara Date: Wed, 15 May 2024 15:04:34 +0200 Subject: [PATCH] Reduce CI runs by ignoring pushes to branch and non-functional files (#395) --- .github/workflows/test.yml | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 6a541ab3..db738513 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -1,6 +1,15 @@ name: Run CI -on: [push, pull_request] +on: + push: + branches: [ "main" ] + paths-ignore: + - '**.md' + - '.vscode/*' + pull_request: + paths-ignore: + - '**.md' + - '.vscode/*' jobs: build: