Add debug message to check if there are changes
Some checks failed
Check usage of free licenses / build-static-assets (pull_request) Successful in 1m30s
Add copyright notice / copyright_notice (pull_request) Failing after 2m39s
Playwright Tests / test (pull_request) Successful in 4m57s
Build Nginx-based docker image / build-static-assets (pull_request) Successful in 11m5s

This commit is contained in:
Manuel Bustillo 2024-10-27 21:59:23 +01:00
parent 14b527f8b4
commit 1a44ecd8e6

View File

@ -22,6 +22,12 @@ jobs:
git config --local user.email "bustikiller@bustikiller.com"
git config --local user.name "Manuel Bustillo"
git add .
if [ -n "$(git status --porcelain)" ]; then
echo "there are changes";
else
echo "no changes";
fi
git commit -m "Add copyright notice"
- name: Push changes
run: git push