Skip to content
Open
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
11 changes: 11 additions & 0 deletions _posts/2026-06-22-a.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
---
layout: post
author: malkomich
permalink: /a/
date: 2026-06-23 01:15:03

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

medium

The date in the front matter (2026-06-23) does not match the date in the filename (2026-06-22). It is recommended to keep these dates synchronized to avoid potential inconsistencies in Jekyll's post processing and URL generation.

Suggested change
date: 2026-06-23 01:15:03
date: 2026-06-22 01:15:03

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

🎯 Functional Correctness | 🟠 Major

🧩 Analysis chain

🏁 Script executed:

#!/bin/bash
rg -n --hidden -S '(^|\s)future\s*:\s*true\b|--future\b' .

Repository: malkomich/malkomich.github.io

Length of output: 167


🏁 Script executed:

#!/bin/bash
# Check for Jekyll config file
fd -H '_config\.ya?ml$' .

Repository: malkomich/malkomich.github.io

Length of output: 203


🏁 Script executed:

#!/bin/bash
# Search for any build scripts or CI configuration
fd -H -E 'node_modules|\.git' '(\.github|ci|build|deploy|Makefile|package\.json|gemfile)' . | head -20

Repository: malkomich/malkomich.github.io

Length of output: 464


🏁 Script executed:

#!/bin/bash
# Check the actual post file contents
cat -n _posts/2026-06-22-a.md

Repository: malkomich/malkomich.github.io

Length of output: 380


🏁 Script executed:

#!/bin/bash
# Check main config file
cat -n ./_config.yml | head -30

Repository: malkomich/malkomich.github.io

Length of output: 829


🏁 Script executed:

#!/bin/bash
# Check src config file
cat -n ./src/yml/_config.yml | head -30

Repository: malkomich/malkomich.github.io

Length of output: 861


🏁 Script executed:

#!/bin/bash
# Check for any posts settings file that might enable future
fd -H 'posts\.yml' . -x cat -n {}

Repository: malkomich/malkomich.github.io

Length of output: 298


🏁 Script executed:

#!/bin/bash
# Check for any advanced settings that might enable future
fd -H 'advanced\.yml' . -x cat -n {}

Repository: malkomich/malkomich.github.io

Length of output: 538


🏁 Script executed:

#!/bin/bash
# Check full _config.yml for any future setting
cat -n ./_config.yml

Repository: malkomich/malkomich.github.io

Length of output: 3002


Move post date back to 2026-06-22 or enable future posts in build configuration.

This post has date: 2026-06-23 01:15:03, making it a future-dated post. Jekyll skips future posts by default unless future: true is set in _config.yml or --future is passed during build. The repository does not enable future posts, so this post will not be published with standard Jekyll builds.

🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@_posts/2026-06-22-a.md` at line 5, The date field in the post front matter is
set to 2026-06-23 01:15:03, which is a future date that will prevent Jekyll from
publishing this post since the repository does not have future posts enabled in
its build configuration. Change the date field in the front matter from
2026-06-23 01:15:03 to 2026-06-22 (matching the post filename) to ensure the
post will be published during standard Jekyll builds.

title: A
description: A
category: apis
paginate: false
---
A