Mention the cleanup too

This commit is contained in:
Joshua Boniface 2021-11-02 11:36:28 -04:00
parent 041fb13b57
commit 6ccb0a3962
1 changed files with 1 additions and 1 deletions

View File

@ -8,7 +8,7 @@ Tasks are specified in the `.bbuilder-tasks.yaml` file in the root of the reposi
At its core Basic Builder has two parts: a Flask API for handling webhook events, and a Celery worker daemon for executing the tasks.
The Flask API portion listens for webhooks from a compatible Git system, and the Celery worker then takes that request, clones the repository to a working directory, checks out the relevant `ref`, reads the tasks from `.bbuilder-tasks.yaml` for the current event type, and then executes them sequentially.
The Flask API portion listens for webhooks from a compatible Git system, and the Celery worker then takes that request, clones the repository to a working directory, checks out the relevant `ref`, reads the tasks from `.bbuilder-tasks.yaml` for the current event type, executes the task commands sequentially, then cleans up the working directory (no artifacts are preserved; this is up to the tasks).
## Dependencies