From 83b3f1a6550da5b1bd17f329afb8f930e5fa4643 Mon Sep 17 00:00:00 2001 From: Tonye Jack Date: Mon, 8 Feb 2021 17:12:17 -0500 Subject: [PATCH] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 2359236..162b83e 100644 --- a/README.md +++ b/README.md @@ -29,13 +29,13 @@ Get branch information without the `/ref/*` prefix if: github.event_name == 'pull_request' run: | echo "${{ steps.branch-name.outputs.current_branch }}" - # Outputs: "feature/test" current PR branch or "main" the default branch that triggered the push event. + # Outputs: "feature/test" current PR branch. - name: Current branch name if: github.event_name == 'push' run: | echo "${{ steps.branch-name.outputs.current_branch }}" - # Outputs: "main" the current branch that triggered the action. + # Outputs: "main" the default branch that triggered the push event. - name: Get Ref brach name run: |