mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-15 17:19:40 +02:00
Sends a message to a Matrix room when a deploy fails, including the failing services, commit, deployer, and a link to the logs. Requires two GitHub Actions secrets: - DEPLOY_NOTIFY_ROOM_ID: Matrix room ID - DEPLOY_NOTIFY_BOT_TOKEN: Matrix bot access token Skips silently if secrets are not configured. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
25 lines
779 B
HTML
25 lines
779 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>WhoPixels - Pixel Game</title>
|
|
<link rel="stylesheet" href="css/style.css">
|
|
</head>
|
|
<body>
|
|
<div id="game-container"></div>
|
|
|
|
<!-- Phaser Library -->
|
|
<script src="https://cdn.jsdelivr.net/npm/phaser@3.55.2/dist/phaser.min.js"></script>
|
|
|
|
<!-- Game Data -->
|
|
<script src="data/npc_characters.js"></script>
|
|
|
|
<!-- Game Scripts -->
|
|
<script src="js/scenes/BootScene.js"></script>
|
|
<script src="js/scenes/MainMenuScene.js"></script>
|
|
<script src="js/scenes/GameScene.js"></script>
|
|
<script src="js/scenes/RPGScene.js"></script>
|
|
<script src="js/main.js"></script>
|
|
</body>
|
|
</html>
|