File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -58,14 +58,14 @@ git config user.name "github-actions[bot]"
5858git add Formula/gitnav.rb
5959
6060if git commit -m " Update gitnav to ${VERSION} " ; then
61- echo " ✅ Changes committed successfully"
61+ echo " Changes committed successfully"
6262else
63- echo " ⚠️ No changes to commit (formula already up to date)"
63+ echo " No changes to commit (formula already up to date)"
6464fi
6565
6666# Push changes
6767if git push; then
68- echo " ✅ Successfully pushed to homebrew-gitnav"
68+ echo " Successfully pushed to homebrew-gitnav"
6969else
70- echo " ⚠️ Push failed - formula may already be up to date"
70+ echo " X Push failed - formula may already be up to date"
7171fi
Original file line number Diff line number Diff line change @@ -258,7 +258,7 @@ jobs:
258258 echo "macos_x86_sha=$MACOS_X86_SHA" >> $GITHUB_OUTPUT
259259 echo "macos_arm_sha=$MACOS_ARM_SHA" >> $GITHUB_OUTPUT
260260
261- echo "✅ Extracted all checksums:"
261+ echo "Extracted all checksums:"
262262 echo " Linux GNU: $LINUX_GNU_SHA"
263263 echo " Linux ARM: $LINUX_ARM_SHA"
264264 echo " macOS x86: $MACOS_X86_SHA"
Original file line number Diff line number Diff line change 1111 - main
1212 # Run tests on schedule to catch dependency issues
1313 schedule :
14- - cron : ' 00 01 * * *' # Daily at 1 AM UTC
14+ - cron : " 00 01 * * *" # Daily at 1 AM UTC
1515
1616env :
1717 CARGO_TERM_COLOR : always
@@ -219,7 +219,7 @@ jobs:
219219 run : |
220220 echo "## Test Results Summary" >> $GITHUB_STEP_SUMMARY
221221 echo "" >> $GITHUB_STEP_SUMMARY
222- echo "✅ All checks completed" >> $GITHUB_STEP_SUMMARY
222+ echo "All checks completed" >> $GITHUB_STEP_SUMMARY
223223 echo "" >> $GITHUB_STEP_SUMMARY
224224 echo "### Job Status" >> $GITHUB_STEP_SUMMARY
225225 echo "- Tests: ${{ needs.test.result }}" >> $GITHUB_STEP_SUMMARY
Original file line number Diff line number Diff line change 11[package ]
22name = " gitnav"
3- version = " 0.1.0 "
3+ version = " 0.1.1 "
44edition = " 2021"
55authors = [" msetsma" ]
66description = " Fast git repository navigator with fuzzy finding"
Original file line number Diff line number Diff line change @@ -517,7 +517,7 @@ gn --list | while read repo; do
517517 status_count=$( git status --porcelain | wc -l)
518518
519519 if [ " $status_count " -gt 0 ]; then
520- echo " ⚠️ $( basename $repo ) : $status_count uncommitted changes"
520+ echo " X $( basename $repo ) : $status_count uncommitted changes"
521521 else
522522 echo " ✓ $( basename $repo ) "
523523 fi
You can’t perform that action at this time.
0 commit comments