From d7c8ccc62537592362f1207554a1dcc3ca67c8f2 Mon Sep 17 00:00:00 2001 From: Marc Herbert Date: Tue, 30 Mar 2021 10:55:00 -0700 Subject: [PATCH] .github/pull-request.yml: watch "main" branch instead of master Will hopefully fix mysterious CI hangs. Signed-off-by: Marc Herbert --- .github/workflows/pull-request.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index 17d56c67ce04..e67d64317dfc 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -18,12 +18,12 @@ name: GitHub Actions on: push: branches: - - 'master' + - 'main' - 'stable-**' - '**-stable' pull_request: branches: - - 'master' + - 'main' - 'stable-**' - '**-stable'