updater: fix webhook secret template (backtick literal, not escaped quotes)

The -template parser is Go text/template; JSON-escaped \" broke the action.
Backtick raw-string literal is valid inside the JSON string and parses cleanly.
Config-only (mounted + hotreload) — no app rebuild.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-06-15 22:41:28 -05:00
parent a4a6fe4c9b
commit 4e02339f59

View File

@@ -7,7 +7,7 @@
"trigger-rule": { "trigger-rule": {
"match": { "match": {
"type": "value", "type": "value",
"value": "{{ getenv \"UPDATER_SECRET\" }}", "value": "{{ getenv `UPDATER_SECRET` }}",
"parameter": { "source": "header", "name": "X-Update-Token" } "parameter": { "source": "header", "name": "X-Update-Token" }
} }
} }