ci: Pass a single argument to `test` command

This commit is contained in:
nosamu 2023-01-18 19:48:10 -06:00 committed by Bale
parent 5b55b6e4b5
commit 34dbeb7702
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@ jobs:
continue-on-error: true
name: Check for repo activity
if: ${{ github.event_name == 'schedule' }}
run: test -z $(git rev-list --after="24 hours" --date=local ${{ github.sha }}) && echo "IS_ACTIVE=false" >> $GITHUB_ENV
run: test -z "$(git rev-list --after="24 hours" --date=local ${{ github.sha }})" && echo "IS_ACTIVE=false" >> $GITHUB_ENV
- name: Get current time with dashes
uses: 1466587594/get-current-time@v2.0.2