We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ade21e4 commit d9ed453Copy full SHA for d9ed453
.github/workflows/scheduled-version-update.yaml
@@ -24,8 +24,8 @@ jobs:
24
id: current_sha
25
run: |
26
cd genesis
27
- CURRENT_SHA=$(git log -n 1 --pretty=format:"%H")
28
- echo "last commit SHA : $CURRENT_SHA"
+ CURRENT_SHA=$(git log -n 1 --pretty=format:"%H" --invert-grep --grep='^ci:')
+ echo "last commit SHA (ci ignored) : $CURRENT_SHA"
29
echo "current_sha=$CURRENT_SHA" >> $GITHUB_OUTPUT
30
31
- name: Get last version tag and SHA
@@ -44,7 +44,7 @@ jobs:
44
45
if [ "${{ steps.current_sha.outputs.current_sha }}" = "${{ steps.last_tag.outputs.tag_sha }}" ]; then
46
echo "No new commit since version. Exiting."
47
- exit 0
+ exit 1
48
fi
49
50
- name: Get version from changelog
0 commit comments