Skip to content

Commit

Permalink
Change detection debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
samdoran committed Jan 4, 2024
1 parent 0168225 commit 378a471
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -134,10 +134,16 @@ jobs:
- name: Check files or fork
id: check-files-or-fork
run: |
if [ ! -z "${{ steps.changed-files.outputs.all_changed_and_modified_files }}" ] || [ "${{ github.event.pull_request.head.repo.full_name }}" != "project-koku/koku" ]; then
if [ "${{ steps.changed-files.outputs.any_modified }}" == "true" ] || [ "${{ github.event.pull_request.head.repo.full_name }}" != "project-koku/koku" ]; then
echo "run_tests=true" >> $GITHUB_OUTPUT
fi
- name: debug
run: |
echo $GITHUB_OUTPUT
echo ${{ steps.changed-files.outputs.all_changed_and_modified_files }}
units:
name: Units - ${{ matrix.python-version }}
needs: changed-files
Expand Down

0 comments on commit 378a471

Please sign in to comment.