Bubbles
1 points · 8 days ago · 0 comments

I had an interesting exchange with a coding agent this evening. Are coding agents useful? Absolutely. But can it take a software engineer’s job? You tell me. Me: In .gitlab-ci.yml, can we set the workflow name only if the PLAYBOOK variable is set? AI: 1 2 3 4 5 workflow: name: "Playbook ${PLAYBOOK}" rules: - if: $PLAYBOOK != "" - when: always The workflow.name only takes effect when matched by a rule, so on push pipelines (where $PLAYBOOK is empty) it falls through to when: al...

No comments yet. Log in to discuss on the Fediverse