From 077dbf1515ef63778c8e33ed5c05b11c3ab50abc Mon Sep 17 00:00:00 2001 From: Julian Vennen Date: Mon, 23 Sep 2024 14:43:40 +0200 Subject: [PATCH] Only run test on new commits --- .github/workflows/test.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index b2ce369..381adc7 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -1,5 +1,9 @@ name: Test -on: [push, pull_request] +on: + push: + branches: + - '*' + pull_request: jobs: test: runs-on: ubuntu-latest