fix(release): disable github plugin comments for gitea compatibility
Some checks failed
Release / lint (push) Successful in 5m2s
Release / frontend-test (push) Successful in 12m46s
Release / backend-test (push) Successful in 39s
Release / build (push) Has started running
Release / Release (push) Has been cancelled
Release / Build & Push Docker Image (push) Has been cancelled

Gitea does not have GitHub's GraphQL API, causing the success/fail
comment features to fail. Disable these features while keeping
release creation functionality.
This commit is contained in:
Tuan-Dat Tran
2026-02-23 20:22:22 +01:00
parent 03e578fcdd
commit d283fdcf82

View File

@@ -61,6 +61,13 @@
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
],
"@semantic-release/github"
[
"@semantic-release/github",
{
"successComment": false,
"failComment": false,
"releasedLabels": false
}
]
]
}