Skip to content

Warrant Canary Reminder #100

Warrant Canary Reminder

Warrant Canary Reminder #100

name: Warrant Canary Reminder
on:
schedule:
- cron: '0 0 1 * *' # First day of every month at midnight UTC
workflow_dispatch:
permissions:
contents: read
jobs:
remind:
runs-on: ubuntu-latest
steps:
- name: Monthly canary attestation reminder
run: |
TODAY=$(date -u +"%Y-%m-%d")
NEXT=$(date -u -d "+30 days" +"%Y-%m-%d")
echo "======================================"
echo " WARRANT CANARY REMINDER - $TODAY"
echo "======================================"
echo ""
echo "ACTION: Visit https://timeseal.online/canary and verify:"
echo " - Page shows today's date ($TODAY)"
echo " - All checklist items still hold true:"
echo ""
echo " [ ] No warrants received"
echo " [ ] No subpoenas received"
echo " [ ] No NSLs received"
echo " [ ] No government requests"
echo " [ ] No forced time manipulation"
echo " [ ] Infrastructure under control"
echo " [ ] No backdoors or compromises"
echo ""
echo " Next reminder: $NEXT"
echo "======================================"