diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md index e6d1956a5a..3ab3a38807 100644 --- a/.github/pull_request_template.md +++ b/.github/pull_request_template.md @@ -1,6 +1,12 @@ ## High Level Overview of Change diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index 566fae55c4..ab4be74fbf 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -1,5 +1,16 @@ name: macos -on: [push, pull_request] +on: + pull_request: + push: + # If the branches list is ever changed, be sure to change it on all + # build/test jobs (nix, macos, windows) + branches: + # Always build the package branches + - develop + - release + - master + # Branches that opt-in to running + - 'ci/**' concurrency: group: ${{ github.workflow }}-${{ github.ref }} cancel-in-progress: true diff --git a/.github/workflows/nix.yml b/.github/workflows/nix.yml index e213599fc1..916bd389e8 100644 --- a/.github/workflows/nix.yml +++ b/.github/workflows/nix.yml @@ -1,5 +1,16 @@ name: nix -on: [push, pull_request] +on: + pull_request: + push: + # If the branches list is ever changed, be sure to change it on all + # build/test jobs (nix, macos, windows) + branches: + # Always build the package branches + - develop + - release + - master + # Branches that opt-in to running + - 'ci/**' concurrency: group: ${{ github.workflow }}-${{ github.ref }} cancel-in-progress: true diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 6aa2bbe706..13b48a04cd 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -1,6 +1,17 @@ name: windows -on: [push, pull_request] +on: + pull_request: + push: + # If the branches list is ever changed, be sure to change it on all + # build/test jobs (nix, macos, windows) + branches: + # Always build the package branches + - develop + - release + - master + # Branches that opt-in to running + - 'ci/**' # https://docs.github.com/en/actions/using-jobs/using-concurrency concurrency: