Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/recyclarr/src/commit/08db62ee8c2da8df1faaf565fe08db966d0a8d29/ci/diff_to_errors.sh
You should set ROOT_URL correctly, otherwise the web may not work correctly.
|
#!/usr/bin/env bash
|
|
files="$(git diff --name-only)"
|
|
|
|
for file in $files; do
|
|
echo "File: $file"
|
|
diffoutput="$(git diff $file | sed -z 's/\n/%0A/g')"
|
|
echo "::error file=$file,title=Code Cleanup Needed In File::$diffoutput"
|
|
done
|