Skip to content

Commit

Permalink
ci: fixed syntax code in auto build packages workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
FajarKim committed Jul 18, 2024
1 parent 1b806b1 commit 0ccb89c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/auto-build-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ jobs:
branch="auto_build_and_bump"
message="build(deps): bump all dependencies and devDependencies version"
body=$(printf "## Changes File\n\n\`\`\`diff\n$(git diff)\n\`\`\`\n\n> Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>")
if [[ ${#body} >= 65000 ]]; then
if (( ${#body} >= 65000 )); then
body="⚠️ The text diff is too longer, [view changes](https://github.com/BarudakRosul/split-lines/pull/${{ github.event.number }}/files)."
fi
if [[ "$(git status --porcelain)" != "" ]]; then
Expand Down

0 comments on commit 0ccb89c

Please sign in to comment.