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 2e91c77 commit b4e8dd6Copy full SHA for b4e8dd6
src/providers/circleci/generator.rs
@@ -766,6 +766,10 @@ impl CircleCIGenerator {
766
767
// Inject requires into jobs that reference these images
768
for (_name, job) in jobs.iter_mut() {
769
+ // Skip approval jobs; they don't run a container and shouldn't depend on build jobs
770
+ if job.job_type.as_deref() == Some("approval") {
771
+ continue;
772
+ }
773
let image_ref = job.image.clone();
774
if image_ref.contains('/') || image_ref.contains(':') {
775
continue;
0 commit comments