Skip to content

Commit

Permalink
Merge pull request #381 from jrjohnson/fix-tag-check
Browse files Browse the repository at this point in the history
Fix the Check for New Commits
  • Loading branch information
stopfstedt authored Aug 6, 2024
2 parents f3225a6 + 1d19cd3 commit 13a2e42
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/tag_version.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- id: should_run
if: ${{ github.event_name == 'schedule' }}
name: check that there have been commits since the last tag
run: test -z $(git rev-list $(git describe --tags --abbrev=0)..${{ github.sha }}) && echo "shouldRun=no" >> "$GITHUB_OUTPUT"
run: test -z $(git rev-list $(git describe --tags --abbrev=0)..${{ github.sha }} --max-count=1) && echo "shouldRun=no" >> "$GITHUB_OUTPUT"
tag:
needs: has_changes
runs-on: ubuntu-latest
Expand Down

0 comments on commit 13a2e42

Please sign in to comment.