From cd78143cfa0ce86319c2e380fd9fcf026ff78af0 Mon Sep 17 00:00:00 2001 From: John King <53827445+jejking-tw@users.noreply.github.com> Date: Sat, 27 Apr 2024 15:11:13 +0200 Subject: [PATCH] Update build.yml Changes github action to track `main` branch rather than old default `master`. --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 40b3fe0..af3046b 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -2,11 +2,11 @@ name: Build and Test with Gradle on: push: - branches: [ "master" ] + branches: [ "main" ] paths-ignore: - '*.md' pull_request: - branches: [ "master" ] + branches: [ "main" ] paths-ignore: - '*.md'