We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 675b479 commit 74c2fbcCopy full SHA for 74c2fbc
devops/actions/clang-format-SYCLomatic/action.yml
@@ -35,12 +35,12 @@ runs:
35
echo "$CHANGED_FILES"
36
37
# Set the output for the next steps
38
- echo "::set-output name=all_changed_files::$CHANGED_FILES"
+ echo "all_changed_files=$CHANGED_FILES" >> $GITHUB_ENV
39
40
- name: List Files
41
shell: bash
42
env:
43
- CHANGED_FILES: ${{ steps.changed-files.outputs.all_changed_files }}
+ CHANGED_FILES: ${{ env.all_changed_files }}
44
run: |
45
pattern_to_exclude_from_clang=".*clang/test/dpct"
46
files_to_be_check=""
0 commit comments