1
0
mirror of https://github.com/tormachris/cf-workers-status-page.git synced 2025-09-21 16:35:15 +02:00

4 Commits

Author SHA1 Message Date
4394c872f5 fail open on kv create 2022-05-06 13:30:06 +01:00
998e3a9db9 fix wrangler version 2022-05-06 13:26:23 +01:00
beb4dc4220 test wrangler2 actions 2022-05-06 13:21:58 +01:00
7813ff93ac Replace all '-' for monitor name.
Signed-off-by: corvofeng <corvofeng@gmail.com>
2022-02-15 22:08:15 +00:00
2 changed files with 6 additions and 4 deletions

View File

@ -4,6 +4,7 @@ on:
push:
branches:
- main
- e/w2
repository_dispatch:
schedule:
- cron: '0 0 1 * *'
@ -22,11 +23,13 @@ jobs:
env:
NODE_ENV: production
- name: Publish
uses: cloudflare/wrangler-action@1.3.0
uses: WalshyDev/wrangler-action@walshy/pages-996-support-wrangler2
with:
apiToken: ${{ secrets.CF_API_TOKEN }}
command: publish --env production
wranglerVersion: beta
preCommands: |
wrangler kv:namespace create KV_STATUS_PAGE
wrangler kv:namespace create KV_STATUS_PAGE || echo "KV namespace already exists"
apt-get update && apt-get install -y jq
export KV_NAMESPACE_ID=$(wrangler kv:namespace list | jq -c 'map(select(.title | contains("KV_STATUS_PAGE")))' | jq -r ".[0].id")
echo "[env.production]" >> wrangler.toml
@ -42,7 +45,6 @@ jobs:
SECRET_TELEGRAM_API_TOKEN
SECRET_TELEGRAM_CHAT_ID
SECRET_DISCORD_WEBHOOK_URL
environment: production
env:
CF_ACCOUNT_ID: ${{ secrets.CF_ACCOUNT_ID }}
SECRET_SLACK_WEBHOOK_URL: ${{secrets.SECRET_SLACK_WEBHOOK_URL}}

View File

@ -64,7 +64,7 @@ export async function notifySlack(monitor, operational) {
}
export async function notifyTelegram(monitor, operational) {
const text = `Monitor *${monitor.name.replace(
const text = `Monitor *${monitor.name.replaceAll(
'-',
'\\-',
)}* changed status to *${getOperationalLabel(operational)}*