feat: Add automated commit and push for manifest.json updates
This commit is contained in:
13
.github/workflows/release.yml
vendored
13
.github/workflows/release.yml
vendored
@@ -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: |
|
||||
|
||||
7
manifest.json
Normal file
7
manifest.json
Normal file
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"plugin_name": "SitiAI Product Teksten",
|
||||
"description": "Genereer productteksten met diverse AI-aanbieders rechtstreeks vanuit WooCommerce.",
|
||||
"version": "1.9.0",
|
||||
"author": "Roberto Guagliardo | SitiWeb",
|
||||
"author_url": "https://sitiweb.nl/"
|
||||
}
|
||||
Reference in New Issue
Block a user