Some checks are pending
no-tracked-dotenv / verify-no-tracked-dotenv (push) Waiting to run
Add the shared dotenv guard script and enforce it in CI to block tracked .env* and *.env files outside .secrets.
17 lines
309 B
YAML
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
|