We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5a8fae5 commit a4c1378Copy full SHA for a4c1378
internal/model/job.go
@@ -52,6 +52,7 @@ type Job struct {
52
CredentialsMetadata []Credential `json:"credentials-metadata" yaml:"-"`
53
MaxUpdaterRunTime int `json:"max-updater-run-time" yaml:"max-updater-run-time,omitempty"`
54
UpdateCooldown *UpdateCooldown `json:"cooldown,omitempty" yaml:"cooldown,omitempty"`
55
+ ExcludePaths []string `json:"exclude-paths" yaml:"exclude-paths,omitempty"`
56
}
57
58
func (j *Job) UseCaseInsensitiveFileSystem() bool {
internal/model/job_test.go
@@ -369,4 +369,8 @@ job:
369
exclude:
370
- dependency-name-3
371
- dependency-name-4
372
+ exclude-paths:
373
+ - "docs/"
374
+ - "examples/"
375
+ - "test/"
376
`
0 commit comments