@@ -94,7 +94,20 @@ inputs:
94
94
- Prefix a path with a bang (`!`) to make it explicitly _not_ ignored. The order of
95
95
multiple paths does _not_ take precedence. The `!` prefix can be applied to
96
96
a submodule's path (if desired) but not hidden directories.
97
- - Glob patterns are not supported here. All asterisk characters (`*`) are literal.
97
+ - **As of v2.12**, glob patterns are supported here.
98
+ All asterisk characters (`*`) were previously literal.
99
+ required : false
100
+ default : ' .github'
101
+ ignore-tidy :
102
+ description : |-
103
+ Use this option to allow clang-tidy to ignore certain paths/files.
104
+ See [`ignore`](#ignore) for more details on possible values.
105
+ required : false
106
+ default : ' .github'
107
+ ignore-format :
108
+ description : |-
109
+ Use this option to allow clang-format to ignore certain paths/files.
110
+ See [`ignore`](#ignore) for more details on possible values.
98
111
required : false
99
112
default : ' .github'
100
113
thread-comments :
@@ -272,6 +285,8 @@ runs:
272
285
--no-lgtm=${{ inputs.no-lgtm }} \
273
286
--step-summary=${{ inputs.step-summary }} \
274
287
--ignore="${{ inputs.ignore }}" \
288
+ --ignore-tidy="${{ inputs.ignore-tidy }}" \
289
+ --ignore-format="${{ inputs.ignore-format }}" \
275
290
--database=${{ inputs.database }} \
276
291
--file-annotations=${{ inputs.file-annotations }} \
277
292
--extra-arg="${{ inputs.extra-args }}" \
@@ -308,6 +323,8 @@ runs:
308
323
' --no-lgtm=${{ inputs.no-lgtm }}' +
309
324
' --step-summary=${{ inputs.step-summary }}' +
310
325
' --ignore="${{ inputs.ignore }}"' +
326
+ ' --ignore-tidy="${{ inputs.ignore-tidy }}"' +
327
+ ' --ignore-format="${{ inputs.ignore-format }}"' +
311
328
' --database=${{ inputs.database }}' +
312
329
' --file-annotations=${{ inputs.file-annotations }}' +
313
330
' --extra-arg="${{ inputs.extra-args }}"' +
0 commit comments