add MistralValorClient #154
Workflow file for this run
This file contains 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: Checks migration files have not been altered. | |
on: | |
push: | |
branches: "**" | |
jobs: | |
check_sql_migrations: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- run: git fetch origin main | |
- name: Check for changed SQL migration files | |
run: | | |
# Compare current branch against main branch for file changes | |
CHANGED_FILES=$(git diff --name-status origin/main...HEAD migrations/sql | grep '^[MDR]' | cut -f2) | |
if [[ ! -z "$CHANGED_FILES" ]]; then | |
echo "Detected changes in migrations/sql (modified, deleted, or renamed):" | |
echo "$CHANGED_FILES" | |
exit 1 | |
else | |
echo "No prohibited changes in migrations/sql." | |
fi |