Skip to content

Comments

fix: link to slack channel#71

Merged
savitharaghunathan merged 2 commits intokonveyor:mainfrom
rmarting:fix-slack-link
Jan 21, 2026
Merged

fix: link to slack channel#71
savitharaghunathan merged 2 commits intokonveyor:mainfrom
rmarting:fix-slack-link

Conversation

@rmarting
Copy link
Contributor

@rmarting rmarting commented Jan 8, 2026

This PR fixes the #70 issue using the default slack channel for this community as it is described in the main page of the GitHub organization.

Summary by CodeRabbit

  • Chores
    • Updated the community Slack link in the site footer to point to the Kubernetes Slack channel, ensuring visitors are directed to the project's primary discussion channel and keeping contact links current. No other navigation or social links were modified and no functional changes were introduced.

✏️ Tip: You can customize this high-level summary in your review settings.

@netlify
Copy link

netlify bot commented Jan 8, 2026

Deploy Preview for glowing-cassata-a7b83f ready!

Name Link
🔨 Latest commit 19d25db
🔍 Latest deploy log https://app.netlify.com/projects/glowing-cassata-a7b83f/deploys/695f79f70f62f00008a9ef41
😎 Deploy Preview https://deploy-preview-71--glowing-cassata-a7b83f.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify project configuration.

@netlify
Copy link

netlify bot commented Jan 8, 2026

Deploy Preview for konveyor-docs ready!

Name Link
🔨 Latest commit 19d25db
🔍 Latest deploy log https://app.netlify.com/projects/konveyor-docs/deploys/695f79f767391100084273d1
😎 Deploy Preview https://deploy-preview-71--konveyor-docs.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify project configuration.

@coderabbitai
Copy link
Contributor

coderabbitai bot commented Jan 8, 2026

Warning

Rate limit exceeded

@rmarting has exceeded the limit for the number of commits that can be reviewed per hour. Please wait 10 minutes and 21 seconds before requesting another review.

⌛ How to resolve this issue?

After the wait time has elapsed, a review can be triggered using the @coderabbitai review command as a PR comment. Alternatively, push new commits to this PR.

We recommend that you space out your commits to avoid hitting the rate limit.

🚦 How do rate limits work?

CodeRabbit enforces hourly rate limits for each developer per organization.

Our paid plans have higher rate limits than the trial, open-source and free plans. In all cases, we re-allow further reviews after a brief timeout.

Please see our FAQ for further information.

📥 Commits

Reviewing files that changed from the base of the PR and between 954aa0f and 19d25db.

📒 Files selected for processing (1)
  • layouts/partials/footer.html
📝 Walkthrough

Walkthrough

Updated a single footer HTML template: the Slack link was changed from a konveyor.io redirect to the Kubernetes Slack channel URL. No other changes detected.

Changes

Cohort / File(s) Summary
Footer link update
layouts/partials/footer.html
Replaced Slack link from https://www.konveyor.io/slack/ to https://kubernetes.slack.com/archives/CR85S82A2

Estimated code review effort

🎯 1 (Trivial) | ⏱️ ~2 minutes

Poem

🐰 I hopped a link from old to new,
Into Kubernetes chat it flew,
A tiny change, a tidy feat,
Now community threads can meet —
Tail twitch, job done, I nibble glue.

🚥 Pre-merge checks | ✅ 3
✅ Passed checks (3 passed)
Check name Status Explanation
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.
Title check ✅ Passed The title 'fix: link to slack channel' directly and clearly describes the main change: updating the Slack link in the footer to the correct channel.
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.

✏️ Tip: You can configure your own custom pre-merge checks in the settings.


Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands and usage tips.

Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 0

🧹 Nitpick comments (2)
layouts/partials/footer.html (2)

12-12: Consider adding aria-label for better accessibility.

The Slack link uses only an icon without descriptive text. Adding an aria-label attribute would help screen reader users understand the link's purpose.

♿ Suggested accessibility improvement
-            <li><a href="https://kubernetes.slack.com/archives/CR85S82A2" target="_blank"><i class="fa-brands fa-slack"></i></a></li>
+            <li><a href="https://kubernetes.slack.com/archives/CR85S82A2" target="_blank" aria-label="Join Konveyor Slack channel"><i class="fa-brands fa-slack"></i></a></li>

9-13: Consider adding rel="noopener noreferrer" to external links.

All external social media links use target="_blank" without rel="noopener noreferrer". While modern browsers provide protection, adding these attributes follows security best practices and prevents potential performance issues.

🔒 Suggested security improvement
-            <li><a href="https://twitter.com/Konveyor_io" target="_blank"><i class="fa-brands fa-x-twitter"></i></a></li>
-            <li><a href="https://www.youtube.com/channel/UCQ3pW3gSBeCy0tj1J0ub2bw" target="_blank"><i class="fa-brands fa-youtube"></i></a></li>
-            <li><a href="https://www.linkedin.com/company/konveyor-community/?viewAsMember=true" target="_blank"><i class="fa-brands fa-linkedin"></i></a></li>
-            <li><a href="https://kubernetes.slack.com/archives/CR85S82A2" target="_blank"><i class="fa-brands fa-slack"></i></a></li>
-            <li><a href="https://github.com/konveyor" target="_blank"><i class="fa-brands fa-github"></i></a></li>
+            <li><a href="https://twitter.com/Konveyor_io" target="_blank" rel="noopener noreferrer"><i class="fa-brands fa-x-twitter"></i></a></li>
+            <li><a href="https://www.youtube.com/channel/UCQ3pW3gSBeCy0tj1J0ub2bw" target="_blank" rel="noopener noreferrer"><i class="fa-brands fa-youtube"></i></a></li>
+            <li><a href="https://www.linkedin.com/company/konveyor-community/?viewAsMember=true" target="_blank" rel="noopener noreferrer"><i class="fa-brands fa-linkedin"></i></a></li>
+            <li><a href="https://kubernetes.slack.com/archives/CR85S82A2" target="_blank" rel="noopener noreferrer"><i class="fa-brands fa-slack"></i></a></li>
+            <li><a href="https://github.com/konveyor" target="_blank" rel="noopener noreferrer"><i class="fa-brands fa-github"></i></a></li>
📜 Review details

Configuration used: defaults

Review profile: CHILL

Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 43f4314 and 38e8aa8.

📒 Files selected for processing (1)
  • layouts/partials/footer.html
🔇 Additional comments (1)
layouts/partials/footer.html (1)

12-12: Slack channel URL verified and accessible.

The Kubernetes Slack workspace channel CR85S82A2 is publicly accessible (HTTP 200 confirmed). The change aligns with the PR objectives and is ready to merge.

Signed-off-by: Roman Martin Gil <jromanmartin@gmail.com>
Signed-off-by: Roman Martin Gil <jromanmartin@gmail.com>
@savitharaghunathan savitharaghunathan merged commit 39fd395 into konveyor:main Jan 21, 2026
14 checks passed
@rmarting rmarting deleted the fix-slack-link branch January 22, 2026 06:58
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants