docv-ged-archive/.gitea/workflows/no-tracked-dotenv.yml
Nicolas Cantu 671655411b
Some checks are pending
no-tracked-dotenv / verify-no-tracked-dotenv (push) Waiting to run
add shared no-tracked-dotenv CI guard
Add the shared dotenv guard script and enforce it in CI to block tracked .env* and *.env files outside .secrets.
2026-05-15 15:47:52 +02:00

17 lines
309 B
YAML

name: no-tracked-dotenv
on:
push:
pull_request:
workflow_dispatch:
jobs:
verify-no-tracked-dotenv:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Ensure no tracked dotenv files
run: bash scripts/check-no-tracked-dotenv-files.sh