Update N8N Readme with link to repo, disable doctoc metadata (#2330)
Some checks are pending
Run tests and pre-commit / test (push) Waiting to run
Run tests and pre-commit / fe-lint-build (push) Waiting to run
Publish Fern Docs / run (push) Waiting to run
Sync to skyvern-cloud / sync (push) Waiting to run

This commit is contained in:
Suchintan 2025-05-13 00:09:03 -04:00 committed by GitHub
parent 9eb4b46bdc
commit 0184a0e705
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
11 changed files with 7 additions and 13 deletions

View file

@ -94,6 +94,7 @@ repos:
rev: v2.2.0 rev: v2.2.0
hooks: hooks:
- id: doctoc - id: doctoc
args: [--notitle]
- repo: local - repo: local
hooks: hooks:
- id: alembic-check - id: alembic-check

View file

@ -1,6 +1,5 @@
<!-- START doctoc generated TOC please keep comment here to allow auto update --> <!-- START doctoc generated TOC please keep comment here to allow auto update -->
<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE --> <!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
**Table of Contents** *generated with [DocToc](https://github.com/thlorenz/doctoc)*
- [Code of Conduct - Skyvern](#code-of-conduct---skyvern) - [Code of Conduct - Skyvern](#code-of-conduct---skyvern)
- [Our Pledge](#our-pledge) - [Our Pledge](#our-pledge)

View file

@ -1,6 +1,5 @@
<!-- START doctoc generated TOC please keep comment here to allow auto update --> <!-- START doctoc generated TOC please keep comment here to allow auto update -->
<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE --> <!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
**Table of Contents** *generated with [DocToc](https://github.com/thlorenz/doctoc)*
- [Contributing to Skyvern](#contributing-to-skyvern) - [Contributing to Skyvern](#contributing-to-skyvern)
- [Table of Contents](#table-of-contents) - [Table of Contents](#table-of-contents)

View file

@ -1,6 +1,5 @@
<!-- START doctoc generated TOC please keep comment here to allow auto update --> <!-- START doctoc generated TOC please keep comment here to allow auto update -->
<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE --> <!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
**Table of Contents** *generated with [DocToc](https://github.com/thlorenz/doctoc)*
- [Security Policy](#security-policy) - [Security Policy](#security-policy)
- [Supported Versions](#supported-versions) - [Supported Versions](#supported-versions)

View file

@ -1,6 +1,5 @@
<!-- START doctoc generated TOC please keep comment here to allow auto update --> <!-- START doctoc generated TOC please keep comment here to allow auto update -->
<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE --> <!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
**Table of Contents** *generated with [DocToc](https://github.com/thlorenz/doctoc)*
- [Creating a new revision](#creating-a-new-revision) - [Creating a new revision](#creating-a-new-revision)
- [Running migrations](#running-migrations) - [Running migrations](#running-migrations)

View file

@ -1,6 +1,5 @@
<!-- START doctoc generated TOC please keep comment here to allow auto update --> <!-- START doctoc generated TOC please keep comment here to allow auto update -->
<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE --> <!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
**Table of Contents** *generated with [DocToc](https://github.com/thlorenz/doctoc)*
- [Skyvern Langchain](#skyvern-langchain) - [Skyvern Langchain](#skyvern-langchain)
- [Installation](#installation) - [Installation](#installation)

View file

@ -1,6 +1,5 @@
<!-- START doctoc generated TOC please keep comment here to allow auto update --> <!-- START doctoc generated TOC please keep comment here to allow auto update -->
<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE --> <!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
**Table of Contents** *generated with [DocToc](https://github.com/thlorenz/doctoc)*
- [Skyvern LlamaIndex](#skyvern-llamaindex) - [Skyvern LlamaIndex](#skyvern-llamaindex)
- [Installation](#installation) - [Installation](#installation)

View file

@ -1,6 +1,5 @@
<!-- START doctoc generated TOC please keep comment here to allow auto update --> <!-- START doctoc generated TOC please keep comment here to allow auto update -->
<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE --> <!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
**Table of Contents** *generated with [DocToc](https://github.com/thlorenz/doctoc)*
- [Contributor Covenant Code of Conduct](#contributor-covenant-code-of-conduct) - [Contributor Covenant Code of Conduct](#contributor-covenant-code-of-conduct)
- [Our Pledge](#our-pledge) - [Our Pledge](#our-pledge)

View file

@ -1,6 +1,5 @@
<!-- START doctoc generated TOC please keep comment here to allow auto update --> <!-- START doctoc generated TOC please keep comment here to allow auto update -->
<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE --> <!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
**Table of Contents** *generated with [DocToc](https://github.com/thlorenz/doctoc)*
- [n8n-nodes-skyvern](#n8n-nodes-skyvern) - [n8n-nodes-skyvern](#n8n-nodes-skyvern)
- [Installation](#installation) - [Installation](#installation)
@ -43,3 +42,4 @@ Follow the [installation guide](https://docs.n8n.io/integrations/community-nodes
* [n8n community nodes documentation](https://docs.n8n.io/integrations/community-nodes/) * [n8n community nodes documentation](https://docs.n8n.io/integrations/community-nodes/)
* [Skyvern documentation](https://docs.skyvern.com/introduction) * [Skyvern documentation](https://docs.skyvern.com/introduction)
* [n8n integration code](https://github.com/Skyvern-AI/skyvern/tree/main/integrations/n8n)

View file

@ -1940,10 +1940,11 @@ class ForgeAgent:
) )
return action_result.data return action_result.data
LOG.warning( if task.data_extraction_goal:
"Failed to find extracted information for task", LOG.warning(
task_id=task.task_id, "Failed to find extracted information for task",
) task_id=task.task_id,
)
return None return None
async def get_failure_reason_for_task(self, task: Task) -> str | None: async def get_failure_reason_for_task(self, task: Task) -> str | None:

View file

@ -1,6 +1,5 @@
<!-- START doctoc generated TOC please keep comment here to allow auto update --> <!-- START doctoc generated TOC please keep comment here to allow auto update -->
<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE --> <!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
**Table of Contents** *generated with [DocToc](https://github.com/thlorenz/doctoc)*
- [WebHuman Automation Tool](#webhuman-automation-tool) - [WebHuman Automation Tool](#webhuman-automation-tool)
- [Getting Started](#getting-started) - [Getting Started](#getting-started)