From 15c01be0c3e32e24ecd72d1f53da83b75b14b113 Mon Sep 17 00:00:00 2001 From: Joel Auterson Date: Sun, 11 Aug 2024 23:00:40 +0100 Subject: [PATCH] Switch to main --- .github/workflows/ci.yaml | 4 ++-- docs/building.md | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 14643f84..5d2e905e 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -3,12 +3,12 @@ name: CI on: push: branches: - - master + - main tags: - "*.*.*" pull_request: branches: - - master + - main permissions: contents: read diff --git a/docs/building.md b/docs/building.md index 499e1871..8bc18d24 100644 --- a/docs/building.md +++ b/docs/building.md @@ -42,7 +42,7 @@ include(FetchContent) FetchContent_Declare( growl GIT_REPOSITORY git@github.com:Bearwaves/growl.git - GIT_TAG master + GIT_TAG main ) FetchContent_MakeAvailable(growl) ``` @@ -52,7 +52,7 @@ has frozen and isn't doing anything; in reality it's just fetching the various Git submodules from within Growl itself, the speed of which will vary based on your internet connection. -You may wish to pin a specific commit (rather than `master`) so that CMake +You may wish to pin a specific commit (rather than `main`) so that CMake doesn't fetch the new version of Growl on every update. You can read more about `FetchContent` in the [CMake documentation](