diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index 434c622..a8925c6 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -24,7 +24,12 @@ jobs: - name: auto_pass if: steps.changed-files.outputs.all_modified_files == '0' id: check_if_only_ignored - run: exit 0 + env: + ALL_CHANGED_FILES: ${{ steps.changed-files.outputs.all_changed_files }} + run: | + for file in ${ALL_CHANGED_FILES}; do + echo "$file was changed" + done - name: Get version from file if: steps.changed-files.outputs.all_modified_files != '0' @@ -35,7 +40,7 @@ jobs: if: steps.changed-files.outputs.all_modified_files != '0' id: previoustag uses: "WyriHaximus/github-action-get-previous-tag@v1.4.0" - + - name: Checking for version bump if: steps.changed-files.outputs.all_modified_files != '0' id: check_vbump