Missing inputs
This happens when a task defines an input which is not provided to the job via get step in the plan.
To address this problem, go through the definition of a failed task and supply the inputs to the job via get steps.
Consider the following pipeline. It will produce the missing inputs error. To fix it, uncomment the necessary get step.
resources:- name: code-repotype: gitsource:branch: mainprivate_key: ((deploy_key))uri: git@gitlab.com:myorg/myrepo.gitjobs:- name: do-nothingplan:- get: code-repo- name: say-helloplan:#- get: code-repo- task: buildconfig:platform: linuximage_resource:type: docker-imagesource:repository: alpineinputs:- name: code-reporun:path: /bin/shargs:- -c- |echo hello