Skip to content

Commit

Permalink
Escape quotes and cap character length on weekly build message
Browse files Browse the repository at this point in the history
  • Loading branch information
jwright159 committed Feb 2, 2025
1 parent 54b3af5 commit 443c2b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/weekly-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
run: |
git clone --bare --filter=blob:none --single-branch https://github.com/Dragon-Fox-Collective/SBEPIS.git
cd SBEPIS.git
echo "log=$(git log --reverse --pretty=format:"%s" --since=1.week | sed 's/^/- /' | tr '\n' '\\' | sed 's/\\/\\n/g')" >> "$GITHUB_OUTPUT"
echo "log=$(git log --reverse --pretty=format:"%s" --since=1.week | sed 's/^/- /' | tr '\n' '\\' | sed 's/\\/\\n/g' | sed 's/"/\\"/g' | sed 's/\(.\{1000\}\).*/\1.../')" >> "$GITHUB_OUTPUT"
build-linux:
runs-on: ubuntu-latest
Expand Down

0 comments on commit 443c2b9

Please sign in to comment.