Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions cmd/headers.go
Original file line number Diff line number Diff line change
Expand Up @@ -95,10 +95,14 @@ config, see the "copywrite init" command.`,
// Append default ignored search patterns (e.g., GitHub Actions workflows)
autoSkippedPatterns := []string{
".github/workflows/**",
".github/actions/**",
".github/dependabot.yml",
"**/node_modules/**",
".copywrite.hcl",
".git/**/*.pack",
".git/objects/**",
".git/refs/**",
".git/logs/**",
}
ignoredPatterns := lo.Union(conf.Project.HeaderIgnore, autoSkippedPatterns)

Expand Down
Loading