> For the complete CircleCI developer hub index, see [llms.txt](https://circleci.com/developer/llms.txt)

# pothix/twist

Integrate Circle CI to Twist. You can easily update a thread by sending notifications about your builds


## Commands

### notify

Notify a Twist thread

| Parameter | Type | Default | Description |
|---|---|---|---|
| `webhook` | string | ${TWIST_WEBHOOK} | Enter either your Webhook value or use the CircleCI UI to add your token under the 'TWIST_WEBHOOK' env var |
| `message` | string | Job completed on CircleCI. | Add a custom message for your notification |

## Executors

### alpine

## Examples

### notify

Notify a Twist thread about the status of the build

```yaml
jobs:
  build:
    docker:
      - image: <your docker image>
    steps:
      - twist/notify:
          webhook: webhook
orbs:
  twist: doist/twist@0.0.1
version: 2.1
workflows:
  your-workflow:
    jobs:
      - build
```