This commit is contained in:
2026-04-25 00:28:34 +02:00
commit 7352957075
3 changed files with 87 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
name: "Signed Webhook Sender"
description: "Send a JSON webhook signed with HMAC SHA-256"
author: "Oryfox"
inputs:
url:
description: "Webhook endpoint URL"
required: true
secret:
description: "HMAC secret"
required: true
payload:
description: "JSON payload string"
required: true
runs:
using: "node24"
main: "index.js"