From 3dd769cf979e702923c125d2325976e7a26076d3 Mon Sep 17 00:00:00 2001 From: Josh Matthews Date: Sun, 4 Apr 2021 10:32:24 -0400 Subject: [PATCH] Don't run full CI against master pushes. --- .github/workflows/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 13e6e51228a..85978ab26a8 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -1,9 +1,9 @@ name: CI on: - # Triggers the workflow on push or pull request events but only for the master branch + # Trigger CI when making pushes to try branches, or the branch that homu interacts with. push: - branches: [ "master", "github-actions-dev", "auto", "try", "try-linux", "try-mac" ] + branches: [ "github-actions-dev", "auto", "try", "try-linux", "try-mac", "try-windows" ] pull_request: branches: [ "master", "github-actions-dev" ]