From 9f8d848bf2a376fb6b0386bb057976c7323f4ffe Mon Sep 17 00:00:00 2001 From: Tim Donohue Date: Mon, 30 Nov 2020 09:45:40 -0600 Subject: [PATCH] Update build.yml to not limit by branch --- .github/workflows/build.yml | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 76148f343550..619e31a6f79d 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -3,12 +3,8 @@ # https://docs.github.com/en/free-pro-team@latest/actions/guides/building-and-testing-java-with-maven name: Build -# Run this Build only for pushes / PRs to main branch -on: - push: - branches: main - pull_request: - branches: main +# Run this Build for all pushes / PRs to current branch +on: [push, pull_request] jobs: tests: