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 65fddfb commit 3df7c33Copy full SHA for 3df7c33
.github/workflows/sycl-detect-changes.yml
@@ -22,13 +22,13 @@ jobs:
22
uses: actions/github-script@v7
23
with:
24
script: |
25
- console.log("Number of files changed:");
26
- console.log(context.payload.pull_request.changed_files);
27
- return context.payload.pull_request.changed_files ;
+ const changedFiles = context.payload.pull_request.changed_files;
+ console.log("Number of files changed:", changedFiles);
+ return { changed_file_cnt: changedFiles } ;
28
29
- name: Check file changes
30
uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36
31
- if: ${{ steps.changed_files.outputs.changed_files }} < 500
+ if: ${{ steps.changed_files.outputs.changed_file_cnt }} < 500
32
id: changes
33
34
filters: |
0 commit comments