From 97e80e40b2e70ff09633e5f54c4790d619f197c6 Mon Sep 17 00:00:00 2001 From: Buckaroo Banzai <39065740+BuckarooBanzay@users.noreply.github.com> Date: Sun, 29 May 2022 17:02:04 +0200 Subject: [PATCH] Update tag.yml --- .github/workflows/tag.yml | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/.github/workflows/tag.yml b/.github/workflows/tag.yml index 29ff3e5..733ae99 100644 --- a/.github/workflows/tag.yml +++ b/.github/workflows/tag.yml @@ -6,7 +6,25 @@ on: - cron: '0 3 * * *' jobs: - build: + check_date: + runs-on: ubuntu-20.04 + name: Check latest commit + outputs: + should_run: ${{ steps.should_run.outputs.should_run }} + steps: + - uses: actions/checkout@v2 + - name: print latest_commit + run: echo ${{ github.sha }} + + - id: should_run + continue-on-error: true + name: check latest commit is less than a day + if: ${{ github.event_name == 'schedule' }} + run: test -z $(git rev-list --after="24 hours" ${{ github.sha }}) && echo "::set-output name=should_run::false" + + tag: + needs: check_date + if: ${{ needs.check_date.outputs.should_run != 'false' }} runs-on: ubuntu-latest steps: - uses: actions/checkout@master