You can use a conversion extension to modify a .drone.yml configuration file before it is parsed and processed by the system. This can be used to automatically add steps or set configuration parameters, or it can be used to convert the configuration file from a non-yaml format to yaml.
Here are some reference extensions:
Configuration
You can register a validation extension by providing the following configuration parameters to the Drone server:
-
DRONE_CONVERT_PLUGIN_ENDPOINT
- Provides the endpoint used to make http requests to an extension.
-
DRONE_CONVERT_PLUGIN_SECRET
- Provides the token used to authenticate http requests to the extension. This token is shared between the server and extension.
How it Works
The server makes an HTTP post to the conversion extension before the yaml file is processed and before any pipelines are scheduled. The conversion extension may return a modified version of the configuration file, which overrides the configuration file from the repository.
Request
The conversion extension receives an HTTP request to modify or convert the configuration file. The request body includes the Repository and Build details in JSON format, as well as the raw Yaml configuration file.
Request Body definition:
|
|
|
|
|
|
|
|
Response
The conversion extension should respond to the request with a 200 response code and the raw configuration file. The conversion extension may respond with a 204 response code, instructing no modifications were made.
Response definition:
|
|
Authorization
The http request is signed per the http signatures draft specification use the shared secret. The receiver should use the signature to verify the authenticity and integrity of the webhook.
Starter Project
If you are interested in creating an conversion extension we recommend using our starter project as a base to jumpstart development.