We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 20155d9 commit 75b0d40Copy full SHA for 75b0d40
clang-tidy/action.yaml
@@ -40,6 +40,10 @@ inputs:
40
description: Path to the underlay workspace containing setup.sh
41
default: ""
42
required: false
43
+ artifact-name:
44
+ description: Name of the artifact to upload
45
+ default: clang-tidy-result
46
+ required: false
47
48
runs:
49
using: composite
@@ -172,7 +176,7 @@ runs:
172
176
if: ${{ steps.check-report-log-existence.outputs.exists == 'true' && steps.check-fixes-yaml-existence.outputs.exists == 'true' }}
173
177
uses: actions/upload-artifact@v4
174
178
with:
175
- name: clang-tidy-result
179
+ name: ${{ inputs.artifact-name }}
180
path: /tmp/clang-tidy-result/
181
182
- name: Mark the workflow as failed if clang-tidy find an error
0 commit comments