-
Notifications
You must be signed in to change notification settings - Fork 67
Fix broken Slack invitation links and centralize URL management #366
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
@madolson 👋 This repository doesn't have Copilot instructions. With Copilot instructions, I can understand the repository better, work faster and produce higher quality PRs. I can generate a .github/copilot-instructions.md file for you automatically. Click here to open a pre-filled issue and assign it to me. I'll write the instructions, and then tag you for review. |
Co-authored-by: madolson <[email protected]>
Co-authored-by: madolson <[email protected]>
Co-authored-by: madolson <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM - I tested and it seems to work but I suspect Slack is doing some hocus pocus that might be making this non-deterministic.
At least this is a step in the right direction though.
Fix Broken Slack Links on Community Page
This PR addresses the issue where the Slack link on the
/community
page doesn't work anymore, showing "This link is no longer active" message.Changes made:
https://valkey.io/slack
Root cause:
The community page and blog post were using malformed Slack URLs that included invalid fragments.
Centralized approach:
All user-facing Slack links now use
https://valkey.io/slack
which provides a consistent, maintainable URL that redirects to the current Slack invitation. The redirect is handled bycontent/slack.md
which contains the actual invitation URL.Files changed:
content/community.md
- Updated to usehttps://valkey.io/slack
content/blog/2025-08-04-valkey-swift/index.md
- Updated to usehttps://valkey.io/slack
config.toml
- Removed unused configuration variableThis approach ensures all Slack links are consistent and maintainable, with only the redirect page needing updates when the invitation URL changes.
Fixes #365.
💬 Share your feedback on Copilot coding agent for the chance to win a $200 gift card! Click here to start the survey.