Merge pull request #762 from automatisch/docs/webhook-examples

docs: Add the webhook-based trigger to integration examples
This commit is contained in:
Ömer Faruk Aydın
2022-12-01 18:00:49 +01:00
committed by GitHub
2 changed files with 10 additions and 1 deletions

View File

@@ -42,6 +42,15 @@ The build integrations section is best understood when read from beginning to en
## Triggers
### Polling-based triggers
- [Search tweets - Twitter](https://github.com/automatisch/automatisch/tree/main/packages/backend/src/apps/twitter/triggers/search-tweets/index.ts)
- [New issues - Github](https://github.com/automatisch/automatisch/tree/main/packages/backend/src/apps/github/triggers/new-issues/index.ts)
### Webhook-based triggers
- [New entry - Typeform](https://github.com/automatisch/automatisch/tree/main/packages/backend/src/apps/typeform/triggers/new-entry/index.ts)
### Pagination with descending order
- [Search tweets - Twitter](https://github.com/automatisch/automatisch/tree/main/packages/backend/src/apps/twitter/triggers/search-tweets/index.ts)

View File

@@ -15,7 +15,7 @@ The build integrations section is best understood when read from beginning to en
:::
:::warning
For HTTP-based triggers, Automatisch currently supports only polling. Webhook-based triggers are not supported at the moment, but we are planning to add them in the future.
We used a polling-based HTTP trigger in our example but if you need to use a webhook-based trigger, you can check the [examples](/build-integrations/examples#webhook-based-triggers) page.
:::
## Add triggers to the app