From 9f1fd6f044bdc9f9a155dbb6a2812cf3228bfac5 Mon Sep 17 00:00:00 2001 From: Daniel Kimsey <90741+dekimsey@users.noreply.github.com> Date: Tue, 21 Mar 2023 16:10:31 -0500 Subject: [PATCH] Add tag/branch name to build step This exposes the name of the branch or tag that the Build Loop step is running. This helps show users what is being built (and thus a history) in the GitHub Actions view. --- .github/workflows/build_loop.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build_loop.yml b/.github/workflows/build_loop.yml index 26ee8c1ed..abd7d4f2f 100644 --- a/.github/workflows/build_loop.yml +++ b/.github/workflows/build_loop.yml @@ -1,5 +1,5 @@ name: 4. Build Loop -run-name: Build Loop +run-name: Build Loop ${{ github.ref_name }} on: workflow_dispatch: