From ab5d9a99364d26c418e370de2923d97f1f01bfac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Radek=20Petru=C5=A1ka?= Date: Tue, 10 Dec 2024 11:53:26 +0100 Subject: [PATCH] Run CI build in PRs and after merge The main branch protection rule requires these checks to pass, but current filters may prevent the build from running. We also recently agreed to run the build after the PR is merged (or after any push to the main branch). --- .github/workflows/ci.yml | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 54887c2..279d5f9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -3,16 +3,8 @@ name: "CI: Build and Test" on: pull_request: branches: [main] - paths: - - "**.cs" - - "**.cshtml" - - "**.tsx" - - "**.js" - - "**.json" - - "**.csproj" - - "**.props" - - "**.targets" - - "**.sln" + push: + branches: [main] jobs: dotnet-format: