Skip to content

Commit c42a042

Browse files
committed
✨ Inspect GitHub Actions Workflow Files By Default
In preparation to add new codemods that affect GitHub Actions workflow files, we should include such files in the default path includes. This is a stop-gap measure until we have a more general way for new codemods to influence the files that codemodder wants to inspect by default. /towards ISS-834
1 parent c669008 commit c42a042

File tree

1 file changed

+3
-1
lines changed
  • framework/codemodder-base/src/main/java/io/codemodder

1 file changed

+3
-1
lines changed

framework/codemodder-base/src/main/java/io/codemodder/CLI.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -626,7 +626,9 @@ private List<ParameterArgument> createFromParameterStrings(final List<String> pa
626626
"**.jsp",
627627
"**/*.jsp",
628628
"web.xml",
629-
"**/web.xml");
629+
"**/web.xml",
630+
".github/workflows/*.yml",
631+
".github/workflows/*.yaml");
630632

631633
private static final List<String> defaultPathExcludes =
632634
List.of(

0 commit comments

Comments
 (0)