Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 38 additions & 0 deletions .github/workflows/check-links.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: Check Links

on:
pull_request:
branches: [main]
push:
branches: [main]

jobs:
check-links:
name: Check Internal Links
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v6

- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
version: 10

- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version: '22'
cache: 'pnpm'

- name: Install dependencies
run: pnpm install --frozen-lockfile

- name: Build static site
run: pnpm build
env:
NODE_OPTIONS: --max-old-space-size=8192

- name: Check for broken links
run: pnpm check-links
1 change: 0 additions & 1 deletion app/posts/[slug]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,6 @@ export async function generateMetadata({
],
publishedTime: post.publishedAt || post.date,
modifiedTime: post.updatedAt || post.date,
authors: post.author ? [`https://devops-daily.com/authors/${post.author.slug}`] : undefined,
section: post.category?.name,
tags: post.tags,
},
Expand Down
8 changes: 1 addition & 7 deletions components/post-header.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import Link from 'next/link';
import { Badge } from '@/components/ui/badge';
import { Clock, Calendar, User, Info } from 'lucide-react';
import { Clock, Calendar, Info } from 'lucide-react';

interface PostHeaderProps {
post: {
Expand Down Expand Up @@ -34,12 +34,6 @@ export function PostHeader({ post, hasAffiliateLinks = false }: PostHeaderProps)
<Clock className="mr-1 h-4 w-4" />
<span>{post.readingTime}</span>
</div>
{post.author && (
<div className="flex items-center text-sm text-muted-foreground">
<User className="mr-1 h-4 w-4" />
<Link href={`/authors/${post.author.slug}`}>{post.author.name}</Link>
</div>
)}
</div>
<h1 className="text-3xl md:text-4xl font-bold tracking-tight">{post.title}</h1>
{hasAffiliateLinks && (
Expand Down
5 changes: 0 additions & 5 deletions content/exercises/terraform-digitalocean-droplet.json
Original file line number Diff line number Diff line change
Expand Up @@ -247,11 +247,6 @@
"url": "https://www.terraform.io/docs/cloud/guides/recommended-practices/index.html",
"type": "guide",
"external": true
},
{
"title": "Infrastructure as Code Fundamentals",
"url": "/posts/infrastructure-as-code-fundamentals",
"type": "tutorial"
}
],
"troubleshooting": [
Expand Down
2 changes: 1 addition & 1 deletion content/news/2026/week-4.md
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ On 2025-12-26, at 07:35 UTC, the SSL certificates for many *.bazel.build domains

**📅 Jan 16, 2026** • **📰 Bazel Blog**

[**🔗 Read more**](/2026/01/16/ssl-cert-expiry.html)
[**🔗 Read more**](https://bazel.build/release/postmortem-ssl-cert-expiry)

### 📄 Building an agentic memory system for GitHub Copilot

Expand Down
2 changes: 1 addition & 1 deletion content/news/2026/week-5.md
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ We're pleased to announce the release of Bazel 9.0! This LTS release is the culm

**📅 Jan 20, 2026** • **📰 Bazel Blog**

[**🔗 Read more**](/2026/01/20/bazel-9.html)
[**🔗 Read more**](https://blog.bazel.build/2026/01/20/bazel-9-lts.html)

---

Expand Down
2 changes: 1 addition & 1 deletion content/news/2026/week-9.md
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ We're thrilled to announce Bazel support in Dependabot Version Updates! 🎉 Thr

**📅 Feb 20, 2026** • **📰 Bazel Blog**

[**🔗 Read more**](/2026/02/20/dependabot.html)
[**🔗 Read more**](https://blog.bazel.build/2026/02/20/dependabot-bazel-support.html)

### 📄 How AI is reshaping developer choice (and Octoverse data proves it)

Expand Down
2 changes: 1 addition & 1 deletion content/posts/deployment-strategies-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ tags:
- DevOps
- Deployment
- Kubernetes
- CI/CD
- CICD
- Blue-Green Deployment
- Canary Deployment
- Rolling Deployment
Expand Down
Loading
Loading