From c11159c725d2aa64f39893b8df97df9b56e4a2db Mon Sep 17 00:00:00 2001 From: Wenju He Date: Wed, 29 May 2024 11:46:56 +0800 Subject: [PATCH] [CI] Change verify_default_branch job name to "In-tree build" Motivation: use the name as check in "Require status checks to pass" Relates to issue #516 --- .github/workflows/on-push-verification.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/on-push-verification.yml b/.github/workflows/on-push-verification.yml index ee0e04d8..c6fb3462 100644 --- a/.github/workflows/on-push-verification.yml +++ b/.github/workflows/on-push-verification.yml @@ -25,7 +25,7 @@ on: jobs: verify_default_branch: - name: Verify for `master` branch + name: In-tree build # ref_name for 'on: push' # base_ref for 'on: pull_request' if: ${{ (github.event_name == 'push' && github.ref_name == 'master') || (github.event_name == 'pull_request' && github.base_ref == 'master') }}