gitlab-webhooks
Installation
SKILL.md
GitLab Webhooks
When to Use This Skill
- Setting up GitLab webhook handlers
- Debugging webhook token verification failures
- Understanding GitLab event types and payloads
- Handling push, merge request, issue, or pipeline events
Essential Code (USE THIS)
GitLab Token Verification (JavaScript)
function verifyGitLabWebhook(tokenHeader, secret) {
if (!tokenHeader || !secret) return false;
Related skills