When I develop a new Buildkite Plugin, I tend to leave the work in dev
branch of the plugin git repository. I find it is very innocent to test changes to the plugin because Buildkite agent won’t pull plugin after the first fetch, this requires me to manually delete the plugin folder on the CI/CD box. Is there any option that make the agent always pull latest change? Something like:
steps:
- label: "testing the plugin"
plugins:
- ssh://git@github.com/org/helloworld-buildkite-plugin.git#dev:
always-pull: true
Thoughts?