File tree Expand file tree Collapse file tree 2 files changed +17
-0
lines changed Expand file tree Collapse file tree 2 files changed +17
-0
lines changed Original file line number Diff line number Diff line change @@ -33,11 +33,18 @@ jobs:
33
33
files : |
34
34
masking/databases/**/**/column-masking.json
35
35
masking/projects/**/masking-exception.json
36
+ since_last_remote_commit : true
37
+ fetch_depth : 0
38
+ include_all_old_new_renamed_files : true
36
39
37
40
- name : Debug changed files in detail
38
41
run : |
39
42
echo "All changed files:"
40
43
echo "${{ steps.changed-files.outputs.all_changed_files }}"
44
+ echo "Added files:"
45
+ echo "${{ steps.changed-files.outputs.added_files }}"
46
+ echo "Modified files:"
47
+ echo "${{ steps.changed-files.outputs.modified_files }}"
41
48
echo "Contains column-masking.json: ${{ contains(steps.changed-files.outputs.all_changed_files, 'column-masking.json') }}"
42
49
echo "Contains masking-exception.json: ${{ contains(steps.changed-files.outputs.all_changed_files, 'masking-exception.json') }}"
43
50
echo "Raw output:"
Original file line number Diff line number Diff line change 33
33
files : |
34
34
masking/masking-algorithm.json
35
35
masking/semantic-type.json
36
+ since_last_remote_commit : true
37
+ fetch_depth : 0
38
+ include_all_old_new_renamed_files : true
39
+
40
+ - name : Debug changed files
41
+ run : |
42
+ echo "All changed and added files:"
43
+ echo "Modified files: ${{ steps.changed-files.outputs.modified_files }}"
44
+ echo "Added files: ${{ steps.changed-files.outputs.added_files }}"
45
+ echo "All changes: ${{ steps.changed-files.outputs.all_changed_files }}"
36
46
37
47
- name : Debug changed files in detail
38
48
run : |
You can’t perform that action at this time.
0 commit comments