I have a pipeline that has many jobs in it. I want to only trigger one job. If I trigger the pipeline it's triggering all jobs. I'm wondering if I can simulate the changes block via variables somehow, or do I need to adjust the rules to allow manual running of a specific job?
plan:s3: extends: .s3-pipeline stage: plan script: - terraform init - terraform plan -out tf.plan artifacts: paths: - s3/ rules: - if: '$CI_COMMIT_BRANCH == "develop" || $CI_PIPELINE_SOURCE == "merge_request_event"' changes: - s3/**/*