An open API service indexing awesome lists of open source software.

https://github.com/kyouheicf/warp-release

Cloudflare WARP クライアントの最新リリース情報を Workers で検知してメール通知する #cloudflare - Qiita
https://github.com/kyouheicf/warp-release

cloudflare cloudflare-workers

Last synced: 12 months ago
JSON representation

Cloudflare WARP クライアントの最新リリース情報を Workers で検知してメール通知する #cloudflare - Qiita

Awesome Lists containing this project

README

          

# Detect the latest release of Cloudflare WARP Client and Send an email notification
![Alt text](image.png)

- Create and Bind KV namespace

```
wrangler kv:namespace create WARP_RELEASE_KV

kv_namespaces = [
{ binding = "WARP_RELEASE_KV", id = "xxxxx"}
]
```

- Bind send_email (Email Worker)

```
send_email = [
{type = "send_email", name = "EMAIL_WORKER", destination_address = "you@example.com"},
]
```

- Put your secret variables

```
wrangler secret put SENDER
wrangler secret put RECIPIENT
```

- Configure your cron trigger

```
# min hour day month weekdays (Cron Triggers execute on UTC time.)
# every day at 10 AM JST
[triggers]
crons = ["0 1 * * *"]
```