Skip to content

Commit e2d348c

Browse files
committed
Revert unauthorized merges of PR #963 and PR #965
1 parent 12a48d2 commit e2d348c

18 files changed

+2133
-621
lines changed

.github/workflows/check-links.yml

Lines changed: 0 additions & 38 deletions
This file was deleted.

app/posts/[slug]/page.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,7 @@ export async function generateMetadata({
6464
],
6565
publishedTime: post.publishedAt || post.date,
6666
modifiedTime: post.updatedAt || post.date,
67+
authors: post.author ? [`https://devops-daily.com/authors/${post.author.slug}`] : undefined,
6768
section: post.category?.name,
6869
tags: post.tags,
6970
},

components/post-header.tsx

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import Link from 'next/link';
22
import { Badge } from '@/components/ui/badge';
3-
import { Clock, Calendar, Info } from 'lucide-react';
3+
import { Clock, Calendar, User, Info } from 'lucide-react';
44

55
interface PostHeaderProps {
66
post: {
@@ -34,6 +34,12 @@ export function PostHeader({ post, hasAffiliateLinks = false }: PostHeaderProps)
3434
<Clock className="mr-1 h-4 w-4" />
3535
<span>{post.readingTime}</span>
3636
</div>
37+
{post.author && (
38+
<div className="flex items-center text-sm text-muted-foreground">
39+
<User className="mr-1 h-4 w-4" />
40+
<Link href={`/authors/${post.author.slug}`}>{post.author.name}</Link>
41+
</div>
42+
)}
3743
</div>
3844
<h1 className="text-3xl md:text-4xl font-bold tracking-tight">{post.title}</h1>
3945
{hasAffiliateLinks && (

content/exercises/terraform-digitalocean-droplet.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -247,6 +247,11 @@
247247
"url": "https://www.terraform.io/docs/cloud/guides/recommended-practices/index.html",
248248
"type": "guide",
249249
"external": true
250+
},
251+
{
252+
"title": "Infrastructure as Code Fundamentals",
253+
"url": "/posts/infrastructure-as-code-fundamentals",
254+
"type": "tutorial"
250255
}
251256
],
252257
"troubleshooting": [

content/news/2026/week-4.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ On 2025-12-26, at 07:35 UTC, the SSL certificates for many *.bazel.build domains
184184

185185
**📅 Jan 16, 2026****📰 Bazel Blog**
186186

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

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

content/news/2026/week-5.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ We're pleased to announce the release of Bazel 9.0! This LTS release is the culm
232232

233233
**📅 Jan 20, 2026****📰 Bazel Blog**
234234

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

237237
---
238238

content/news/2026/week-9.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ We're thrilled to announce Bazel support in Dependabot Version Updates! 🎉 Thr
152152

153153
**📅 Feb 20, 2026****📰 Bazel Blog**
154154

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

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

content/posts/deployment-strategies-guide.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ tags:
1515
- DevOps
1616
- Deployment
1717
- Kubernetes
18-
- CICD
18+
- CI/CD
1919
- Blue-Green Deployment
2020
- Canary Deployment
2121
- Rolling Deployment

0 commit comments

Comments
 (0)