Built-in Data Sources

System integration with datetime, git, and environment sources

DateTime Data Source

The DateTime source provides build timestamps and date/time components for flexible formatting.

Configuration

Add this to your ssi-config.toml:

[[step]]
emoji = "🕒"
processing = "include"
type = "datetime"
timezone = "UTC"
options = ["inline"]

Timezone: Use the timezone field to specify an IANA timezone (e.g., "UTC", "America/New_York", "Europe/London"). If omitted, uses the TZ environment variable.

Build Timestamp

ISO format 🕒iso: 2026-06-09T00:58:34

Date 🕒date: 2026-06-09

Time 🕒time: 00:58:34

Date Components

Year 🕒year: 2026

Month 🕒month: 06

Month name 🕒month_name: June

Day 🕒day: 09

Day of week 🕒day_of_week: Tuesday

Time Components

Hour 24h 🕒hour: 00

Hour 12h 🕒hour12: 12

AM/PM 🕒am_pm: AM

Minute 🕒minute: 58

Second 🕒second: 34

← Back to Overview