Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix pr validation startup failure #1047

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 18 additions & 18 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -107,21 +107,21 @@ jobs:
make install-controller-gen
make generate-deepcopy

- name: Verify Changed files
uses: tj-actions/verify-changed-files@v5.5
id: changed_files
with:
files: |
api/generated/v1/*.go
api/v1/*/*.go
'.(go)$'
- name: Display changed files
if: steps.changed_files.outputs.files_changed == 'true'
run: |
echo "Changed files: ${{ steps.changed_files.outputs.changed_files }}"
- name: Perform action when files change.
if: steps.changed_files.outputs.files_changed == 'true'
run: |
exit 1
# - name: Verify Changed files
# uses: tj-actions/verify-changed-files@v5.5
# id: changed_files
# with:
# files: |
# api/generated/v1/*.go
# api/v1/*/*.go
# '.(go)$'
#
# - name: Display changed files
# if: steps.changed_files.outputs.files_changed == 'true'
# run: |
# echo "Changed files: ${{ steps.changed_files.outputs.changed_files }}"
#
# - name: Perform action when files change.
# if: steps.changed_files.outputs.files_changed == 'true'
# run: |
# exit 1
Loading