Skip to content

Commit

Permalink
버전 업 관련 아무것도 없으면 스킵 처리 (#55)
Browse files Browse the repository at this point in the history
  • Loading branch information
young-do authored Oct 22, 2024
1 parent 63975e0 commit 5c22826
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/bump-up.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,10 @@ jobs:
echo "version_type=major" >> $GITHUB_ENV
elif [[ "$last_commit_message" == *"#minor"* ]]; then
echo "version_type=minor" >> $GITHUB_ENV
else
echo "No specific version bump keyword found. Defaulting to patch."
elif [[ "$last_commit_message" == *"#patch"* ]]; then
echo "version_type=patch" >> $GITHUB_ENV
else
echo "No specific version bump keyword found. Skip it"
fi
- name: Bump version
Expand Down

0 comments on commit 5c22826

Please sign in to comment.