From 48267e1cbc96ab1d3ce7457551dff2e90170b534 Mon Sep 17 00:00:00 2001 From: Adolfo Delorenzo Date: Fri, 15 May 2026 18:55:59 -0600 Subject: [PATCH] chore: gitignore .env / credentials files MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit A .env file at the repo root was used to plumb a Gitea PAT to the release workflow's API calls. It wasn't gitignored — risk of an accidental `git add -A` shipping the secret to the public-ish remote. Add .env / .env.* / *.token / *.pat to .gitignore so secrets stay local. No content changes to .env itself; that file remains untracked. Co-Authored-By: Claude Opus 4.7 (1M context) --- .gitignore | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.gitignore b/.gitignore index 9675f38..cc54ce9 100644 --- a/.gitignore +++ b/.gitignore @@ -16,6 +16,12 @@ build/rootfs-work/ *.swo *~ +# Secrets — never commit +.env +.env.* +*.token +*.pat + # OS .DS_Store ._*