feat: Add automated commit and push for manifest.json updates

This commit is contained in:
2026-01-31 19:42:38 +00:00
parent 4ff96d98e0
commit 9ae516b77c
2 changed files with 20 additions and 0 deletions

View File

@@ -68,6 +68,19 @@ jobs:
print('manifest.json aangemaakt/bijgewerkt')
PY
- name: Commit & push manifest.json
run: |
if git diff --quiet -- manifest.json; then
echo "manifest.json ongewijzigd; geen commit nodig."
exit 0
fi
git config user.name "github-actions[bot]"
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
git add manifest.json
git commit -m "chore: update manifest.json"
git push
- name: Check if tag exists
id: tagcheck
run: |