Drop broken Telegram notifier; redirect blog home → /blog/#168
Merged
lukaskywalk merged 1 commit intoApr 29, 2026
Merged
Conversation
1. Removes the "Notify deployment" step that posted to a Telegram chat from which the bot has been kicked. Every successful deploy was being marked as failed because of this single side-effect step. The deploy itself worked, but the workflow status was misleading. Removing the step fixes the status without losing any functionality (notifications can be re-added later via a different channel if desired). 2. Adds a custom home layout (site/layouts/index.html) so visiting blog.ubik.hr/ or blog.ubik.hr/en/ redirects to the corresponding blog index (/blog/ or /en/blog/). Users typing the bare domain are sent straight to where the content lives, since this site is now blog-only. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Two cleanups:
1. Remove broken Telegram notification step
The `appleboy/telegram-action` step in `publish.yml` was failing on every run with:
`Forbidden: bot was kicked from the supergroup chat`
This caused the workflow to be marked as failed even though the deploy itself succeeded — misleading any time someone glances at the Actions tab. Removing the step.
(If Telegram notifications are still wanted later, easiest fix is to invite the bot back to the chat and add the step in. For now: dropped.)
2. Redirect blog home pages to the blog index
`https://blog.ubik.hr/\` and `/en/` were rendering the legacy Hugo home page. Since this site is now blog-only, we send users straight to where the content lives:
Changes
Test plan
🤖 Generated with Claude Code