browsertrix/.github/workflows/password-check.yaml
Workflow config file is invalid. Please check your config file: EOF
Ilya Kreymer b574f00d2b
Add Repository Index + Chart Rename + Docs Rename (#1708)
Repository Index: Generate an index.yaml in ./docx/helm-repo/index.yaml
to allow for browsertrix to be a helm repository.
docs: rename docs.browsertrix.cloud -> docs.browsertrix.com
docs: update deployment doc to mention helm repo as preferred way to
install
docs build action: generate repository index in GH action
publish action: update auto-generated message to mention installing from
the repo.

---------
Co-authored-by: Tessa Walsh <tessa@bitarchivist.net>
2024-04-21 09:42:25 -07:00

41 lines
948 B
YAML

# name: Password Check
# on:
# push:
# paths:
# - '*.yaml'
# - '*.yml'
# pull_request:
# paths:
# - '*.yaml'
# - '*.yml'
# jobs:
# check:
# runs-on: ubuntu-latest
# steps:
# - name: checkout
# uses: actions/checkout@v3
# with:
# fetch-depth: 3
# - name: Set up Python
# uses: actions/setup-python@v4
# with:
# python-version: '3.10'
# - name: Install dependencies
# run: |
# cd backend/
# python -m pip install --upgrade pip
# pip install pyyaml
# - name: Password Check
# run: |
# CHANGED_FILES=$(git diff --name-only HEAD^..HEAD)
# echo $CHANGED_FILES
# YML_FILES=$(echo "$CHANGED_FILES" | { grep ".yml$\|.yaml$" || true; })
# if [[ -n "$YML_FILES" ]]; then
# python3 scripts/check_passwords.py $YML_FILES
# fi