fix(release): disable github plugin comments for gitea compatibility
Some checks failed
Release / Release (push) Successful in 21m15s
Release / Build & Push Docker Image (push) Failing after 7m16s

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 21:05:21 +01:00
parent af6fe5171f
commit de67a6d0ef

View File

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