Agents Webhookサテライト連携を追加 #1

Merged
yotta merged 5 commits from codex/add-agents-webhook-satellite into main 2026-07-18 00:14:29 +00:00
4 changed files with 5 additions and 5 deletions
Showing only changes of commit d906dc05a9 - Show all commits
+1 -1
View File
@@ -10,7 +10,7 @@ on:
env:
REGISTRY: harbor.mukan.0am.jp
IMAGE_NAME: harbor.mukan.0am.jp/services/email-to-discord
IMAGE_NAME: harbor.mukan.0am.jp/knative-func/email-to-discord
permissions:
contents: read
+2 -2
View File
@@ -85,8 +85,8 @@ cp .env.example .env
`container_tools` はイメージをビルドせず、レジストリからpullして起動します。このリポジトリでは、`main` へのpush時にGitea Actionsが次のイメージをHarborへ公開します。
```text
harbor.mukan.0am.jp/services/email-to-discord:<commit-sha>
harbor.mukan.0am.jp/services/email-to-discord:latest
harbor.mukan.0am.jp/knative-func/email-to-discord:<commit-sha>
harbor.mukan.0am.jp/knative-func/email-to-discord:latest
```
### 1. Gitea Actions Secretsの設定
+1 -1
View File
@@ -1,6 +1,6 @@
services:
email-to-discord:
image: harbor.mukan.0am.jp/services/email-to-discord:latest
image: harbor.mukan.0am.jp/knative-func/email-to-discord:latest
restart: unless-stopped
extra_hosts:
- "host.docker.internal:host-gateway"
+1 -1
View File
@@ -11,7 +11,7 @@ class ContainerToolsDeploymentTests(unittest.TestCase):
compose = (REPOSITORY_ROOT / "docker-compose.yml").read_text(encoding="utf-8")
self.assertIn(
"image: harbor.mukan.0am.jp/services/email-to-discord:latest",
"image: harbor.mukan.0am.jp/knative-func/email-to-discord:latest",
compose,
)
self.assertIn("host.docker.internal:host-gateway", compose)