change check

This commit is contained in:
2025-12-04 14:49:37 -06:00
parent 3012504e96
commit f34b836906
4 changed files with 18 additions and 12 deletions

View File

@@ -216,13 +216,16 @@ jobs:
run: |
cd ${MANIFEST_DIR}
if git status --porcelain | grep -q .; then
GIT_CHANGES=$(git status --porcelain)
if [ -n "$GIT_CHANGES" ]; then
echo ">> Changes detected"
git status --porcelain
echo "changes-detected=true" >> $GITEA_OUTPUT
else
echo ">> No changes detected, skipping PR creation"
exit 0
fi
echo "----"