We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4596186 commit 9870af2Copy full SHA for 9870af2
builder.go
@@ -101,8 +101,13 @@ func (b *Builder) Run(path string) error {
101
if filename != "Dockerfile" {
102
return nil
103
}
104
+
105
+ // build if one of these match
106
+ // * changed (per folder)
107
+ // * run by dronetrigger (rebuilds all)
108
+ // * no no changes found and diffonly is not set (rebuilds all)
109
_, found := changes[dir]
- if noChanges && !c.DiffOnly {
110
+ if c.Dronetrigger || (noChanges && !c.DiffOnly) {
111
found = true
112
113
if found {
0 commit comments