From 5f6d072a691046095dddb60bcbebf6bfe7515066 Mon Sep 17 00:00:00 2001 From: krcroft Date: Tue, 14 Jan 2020 09:30:00 -0800 Subject: [PATCH] Set BASH shell in Config Heavy's commit-check The commit-check step run a bash script however its `shell:` directive was unset, meaning that under Windows the script would be executed by PowerShell. This commit fixes this by explicitly setting `shell: bash`. --- .github/workflows/config.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/config.yml b/.github/workflows/config.yml index 9abc25f1..08af2f33 100644 --- a/.github/workflows/config.yml +++ b/.github/workflows/config.yml @@ -43,6 +43,7 @@ jobs: - name: Check repo for commits id: repo-meta + shell: bash run: 'echo ::set-output name=has-commits::$(./scripts/has-commits-since.sh "24 hours ago")' - name: Get Date