Compare commits

1 Commits
prod ... 0.x

Author SHA1 Message Date
9d0ea93aab use secret webhook url, extra dash in release workflow
All checks were successful
CI / testsuite (mysql, 8.4, ) (push) Successful in 7m0s
CI / testsuite (pgsql, 8.2, ) (push) Successful in 4m9s
CI / testsuite (mysql, 8.2, ) (push) Successful in 13m47s
CI / testsuite (pgsql, 8.4, ) (push) Successful in 8m14s
CI / testsuite (sqlite, 8.2, prefer-lowest) (push) Successful in 4m1s
CI / testsuite (sqlite, 8.2, ) (push) Successful in 13m20s
CI / testsuite (sqlite, 8.4, ) (push) Successful in 8m22s
CI / Coding Standard & Static Analysis (push) Successful in 12m49s
2026-01-23 21:13:28 -08:00
2 changed files with 5 additions and 5 deletions

View File

@@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
- uses: actions/checkout@v4
uses: actions/checkout@v4
- name: Release
uses: softprops/action-gh-release@v2

View File

@@ -15,8 +15,8 @@ jobs:
- name: Webhook
uses: zzzze/webhook-trigger@master
with:
data: "{\"text\":\"cake-addresses build succeeded\"}"
webhook_url: "https://chat.ops.hipowered.dev/hooks/697436db05042b4dd9cce240/hZCMq7jCPqHprKFcWp3v49wsf4MaN6caWdh7F8iXiSyr6Ts9"
data: "{\"text\":\"${{ gitea.repository }} build succeeded 🎉\"}"
webhook_url: ${{ secrets.BUILD_STATUS_NOTIFY_WEBHOOK_URL }}
options: "-H \"Content-Type: application/json\""
on-failure:
@@ -26,6 +26,6 @@ jobs:
- name: Webhook
uses: zzzze/webhook-trigger@master
with:
data: "{\"text\":\"cake-addresses build failed\"}"
webhook_url: "https://chat.ops.hipowered.dev/hooks/697436db05042b4dd9cce240/hZCMq7jCPqHprKFcWp3v49wsf4MaN6caWdh7F8iXiSyr6Ts9"
data: "{\"text\":\"${{ gitea.repository }} build failed 🔎\"}"
webhook_url: ${{ secrets.BUILD_STATUS_NOTIFY_WEBHOOK_URL }}
options: "-H \"Content-Type: application/json\""