-
Notifications
You must be signed in to change notification settings - Fork 288
[codex] Check UDF skill markdown license headers #15129
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -46,6 +46,7 @@ jobs: | |
| *.xml, | ||
| *.properties, | ||
| *.scala, | ||
| skills/udf-*/*.md, | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
The |
||
| *.py, | ||
| build/*, | ||
| *.cpp, | ||
|
|
@@ -58,4 +59,3 @@ jobs: | |
| *target/*, | ||
| thirdparty/*, | ||
| sql-plugin/src/main/java/com/nvidia/spark/rapids/format/* | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
skills/udf-*/*.mdonly matches files exactly one level deep inside eachudf-*directory — a bare*does not cross path separators. Four existing markdown files (skills/udf-convert-to-cuda/references/JNI_CUDA_GUIDE.md,NATIVE_BUILD_ENV.md,skills/udf-convert-to-cudf/references/RAPIDS_UDF.md,skills/udf-optimize-cudf/references/OPTIMIZATION_PATTERNS.md) all happen to have headers already, so there is no immediate CI failure, but any future markdown file added under areferences/or other nested directory would silently escape the check. Usingskills/udf-*/**/*.mdwould cover the full tree if that is the intent.