From 89108cf0e2897ef9901ac9abe60859f998647b91 Mon Sep 17 00:00:00 2001 From: Aaron Seilis Date: Sat, 16 Nov 2024 08:41:46 -0800 Subject: [PATCH] Fix the branch in the CI workflow Turns out that the example from the GitHub workflows repository needs the actual branch name. --- .github/workflows/ci.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 3d9549e..f3a917a 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -3,9 +3,9 @@ name: CI on: push: - branches: [ $default-branch ] + branches: [ "main" ] pull_request: - branches: [ $default-branch ] + branches: [ "main" ] env: CARGO_TERM_COLOR: always