From 713d4cb68b775ecdec1e6987d8c25c82a66a29d2 Mon Sep 17 00:00:00 2001 From: Dan Albert Date: Tue, 14 May 2024 09:43:45 -0700 Subject: [PATCH] Fix the build workflow to actually run on push. `[ main develop ]` is not a list of "main" and "develop", it's a list of "main develop". There is no branch named "main develop". This has been wrong since it was originally checked in a few years ago, so checks just have not been running on push. The branch filtering is totally unnecessary. Just remove it. This, it turns out, is the real reason that the badge shows "no status". It's right. This build has never run, so there is no status yet. --- .github/workflows/build.yml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 1acc558f3..5ea195818 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -1,10 +1,6 @@ name: build -on: - push: - branches: [ main develop ] - pull_request: - branches: [ main ] +on: [push, pull_request] jobs: build: