From f0b2a73b5baded8f0c1b5914bc7af25bb7a8eb12 Mon Sep 17 00:00:00 2001 From: Luke Francl Date: Fri, 8 Oct 2021 11:56:56 -0700 Subject: [PATCH] fix branch_name --- .github/workflows/sync-linguist.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/sync-linguist.yml b/.github/workflows/sync-linguist.yml index 816337f..0c86233 100644 --- a/.github/workflows/sync-linguist.yml +++ b/.github/workflows/sync-linguist.yml @@ -12,7 +12,7 @@ jobs: run: | set -euo pipefail IFS=$'\n\t' - branch_name=$(feature/sync-linguist-$(date +%s)) + branch_name=feature/sync-linguist-$(date +%s) git checkout -b $branch_name echo "::set-output name=branch_name::$branch_name" - uses: actions/checkout@v2