You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: auto_merge not working properly with orchestrator backend (#1871)
* fix: auto_merge not working properly iwith orchestrator backend
When running with Digger backend mode, PR is merged when `auto_merge`
is enabled even though not all impacted projects have been applied.
This is caused because Digger batch does not have context whether all
the needed jobs have been triggered when using `digger apply` with `-p` flag.
Unlike in backendless mode, where all the jobs are run sequentially and the parent one
does have context if all the impacted projects have been applied, in backend mode
jobs are triggered via the Batch one, which does have this context. This PR addresses
the issue by adding one more column to store this context, which will then be used in the
subsequent run.
0 commit comments