Add a separate action to list changed migrations
Some checks failed
Run unit tests / rubocop (pull_request) Successful in 55s
Run unit tests / check-licenses (pull_request) Successful in 1m10s
Run unit tests / copyright_notice (pull_request) Successful in 1m17s
Run unit tests / unit_tests (pull_request) Failing after 2m0s
Run unit tests / build-static-assets (pull_request) Has been skipped

This commit is contained in:
Manuel Bustillo 2025-01-24 08:45:57 +01:00
parent f08082fb3b
commit 644f35c57f

View File

@ -34,6 +34,20 @@ jobs:
sleep 1
echo "Trying again"
done
- name: Get all migrations added
id: changed-migration-files
uses: tj-actions/changed-files@v45
with:
files: |
db/migrate/**.rb
- name: List all migrations added
if: steps.changed-migration-files.outputs.any_changed == 'true'
env:
ALL_CHANGED_FILES: ${{ steps.changed-migration-files.outputs.all_changed_files }}
run: |
for file in ${ALL_CHANGED_FILES}; do
echo "$file was changed"
done
- run: |
git fetch origin ${{ github.event.pull_request.base.sha }}
migrations_added=$(git diff ${{ github.event.pull_request.base.sha }} --name-only db/migrate/ | wc -l)