From 0be04aea397c70751b36f23fc24f91781969836b Mon Sep 17 00:00:00 2001 From: Aaron Kuehler Date: Mon, 18 Dec 2023 14:18:17 -0500 Subject: [PATCH] Run ci on the master branch (#29) The CI workflow has always intended to run when the master branch changes, however the workflow definition is targeting the wrong branch name. With this change, CI should run on the head commits of all PRs, AND the master branch. --- .github/workflows/ci.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index d675284f4..86c129a23 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -3,7 +3,7 @@ name: CI on: push: branches: - - main + - master pull_request: jobs: