Example Article: Testing the Automated Workflow
Planted February 12, 2026
This is an example article created to test the automated Calmly Writer → GitHub Pages workflow.
What This Article Demonstrates
When this file is committed and pushed to GitHub, the automated workflow will:
- Validate the frontmatter - Check that the title exists
- Auto-generate the date - Add the current timestamp from file modification time
- Auto-add metadata - Set
draft: falseandtags: [] - Process images - Copy any images from
./images/to/static/images/ - Migrate the file - Move this from
/drafts/to/content/articles/ - Build and deploy - Hugo builds the site and deploys to GitHub Pages
Testing Image Processing (Optional)
To test image processing, you can add an image:
- Place an image file in
/drafts/images/example-diagram.png - Reference it in markdown:

The automated script will:
- Look for the image in
/drafts/images/ - Copy it to
/static/images/ - Update the path in the markdown to
/images/example-diagram.png
For this example, the image is optional - the workflow will work without it.
Benefits of This Workflow
- Zero configuration needed locally - just write and push
- No manual frontmatter - only title is required
- Automatic image handling - no path updates needed
- Fast deployment - live in ~2 minutes after push
- Error prevention - validation catches missing titles
Next Steps
After testing this workflow, you can:
- Delete this example article
- Start writing real content in Calmly Writer
- Export to
/drafts/and push to GitHub - Watch your content go live automatically
This article was created as part of the automated workflow setup. Feel free to delete it once you’ve verified the automation works correctly.