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/f323ba79da4b40586ec2fbd0cf9d30361c93b860/ci/code_cleanup.sh You should set ROOT_URL correctly, otherwise the web may not work correctly.
recyclarr/ci/code_cleanup.sh

19 lines
534 B

#!/usr/bin/env bash
ref="$1"
changed_files="$(git diff --relative --name-only --diff-filter=d $ref... | egrep '\.cs$')"
if [[ -z "$changed_files" ]]; then
echo "No changed files detected; skipping code cleanup"
exit 0
fi
echo '--------------------------------------------------'
echo 'Files to be checked for code cleanup:'
echo
echo "$changed_files"
echo '--------------------------------------------------'
jb cleanupcode Recyclarr.sln \
--profile="Recyclarr Cleanup" \
--include="$(echo "$changed_files" | tr '\n' ';')"