Warrant Canary Reminder #100
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 "======================================" |