From 9044dc26401ec4d478352694ed66e6140b6e3ad6 Mon Sep 17 00:00:00 2001 From: MartinEesmaa Date: Tue, 14 Mar 2023 22:02:19 +1100 Subject: [PATCH] Only C# script will run in actions --- .github/workflows/dotnet.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index 82e6c87..9e91c0f 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -2,9 +2,11 @@ name: .NET on: push: - branches: [ master ] + paths: + - 'Program.cs' pull_request: - branches: [ master ] + paths: + - 'Program.cs' jobs: build: