This commit is contained in:
JamBox
2026-02-15 21:03:42 -08:00
parent 5e5eb20618
commit 6488eac108
6 changed files with 169 additions and 3 deletions

View File

@@ -1,7 +1,17 @@
[
{
"id": "redeploy-apps",
"execute-command": "/home/james/server-stack/deploy.sh",
"command-working-directory": "/home/james/server-stack"
"execute-command": "{{getenv \"HOME\"}}/server-stack/deploy.sh",
"command-working-directory": "{{getenv \"HOME\"}}/server-stack",
"trigger-rule": {
"match": {
"type": "payload-hmac-sha256",
"secret": "{{getenv \"WEBHOOK_SECRET\"}}",
"parameter": {
"source": "header",
"name": "X-Gitea-Signature"
}
}
}
}
]