Skip to content

Commit 49aeb66

Browse files
authored
Merge pull request #7 from conciso:feature/CCE-2744-dokumentation-bereitstellen
Update documentation URLs and refine GitHub Actions workflow triggers
2 parents b075591 + 5d2f2f0 commit 49aeb66

File tree

5 files changed

+23
-10
lines changed

5 files changed

+23
-10
lines changed

.github/workflows/build-and-deploy-custom-node-v2.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ on:
44
push:
55
branches:
66
- "development"
7-
- "feature/**"
8-
- "bug/**"
7+
#- "feature/**"
8+
#- "bug/**"
99
pull_request:
1010
branches:
1111
- "development"

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
A powerful n8n Community Node for seamless integration with Confluence Cloud REST API. This node provides comprehensive access to Confluence Cloud's capabilities with automatic API validation, deprecation detection, and intelligent error handling.
44

5-
[![npm version](https://img.shields.io/npm/v/n8n-nodes-confluence-cloud.svg)](https://www.npmjs.com/package/n8n-nodes-confluence-cloud)
5+
[![npm version](https://img.shields.io/npm/v/@conciso/n8n-nodes-confluence-cloud.svg)](https://www.npmjs.com/package/@conciso/n8n-nodes-confluence-cloud)
66
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
77

88
## ✨ Features
@@ -25,11 +25,11 @@ Install the node using n8n's Community Nodes feature:
2525

2626
1. **Via n8n Interface:**
2727
- Go to **Settings****Community Nodes**
28-
- Install package: `n8n-nodes-confluence-cloud`
28+
- Install package: `@conciso/n8n-nodes-confluence-cloud`
2929

3030
2. **Via npm (for self-hosted n8n):**
3131
```bash
32-
npm install n8n-nodes-confluence-cloud
32+
npm install @conciso/n8n-nodes-confluence-cloud
3333
```
3434

3535
For detailed installation instructions, see the [n8n Community Nodes documentation](https://docs.n8n.io/integrations/community-nodes/installation/).

credentials/ConfluenceCloudApi.credentials.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ import {
88
export class ConfluenceCloudApi implements ICredentialType {
99
name = 'confluenceCloudApi';
1010
displayName = 'Confluence Cloud API';
11-
documentationUrl = 'https://developer.atlassian.com/cloud/confluence/rest/v2/intro/';
11+
documentationUrl =
12+
'https://github.com/conciso/n8n-nodes-confluence-cloud?tab=readme-ov-file#-credentials-setup';
1213
properties: INodeProperties[] = [
1314
{
1415
displayName: 'Domain',

nodes/ConfluenceCloud/ConfluenceCloud.node.json

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,17 @@
88
"name": "confluenceCloudApi",
99
"displayName": "Confluence Cloud API"
1010
}
11-
]
11+
],
12+
"resources": {
13+
"credentialDocumentation": [
14+
{
15+
"url": "https://github.com/conciso/n8n-nodes-confluence-cloud?tab=readme-ov-file#-credentials-setup"
16+
}
17+
],
18+
"primaryDocumentation": [
19+
{
20+
"url": "https://github.com/conciso/n8n-nodes-confluence-cloud?tab=readme-ov-file#-n8n-nodes-confluence-cloud"
21+
}
22+
]
23+
}
1224
}

templates/README.template.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
A powerful n8n Community Node for seamless integration with Confluence Cloud REST API. This node provides comprehensive access to Confluence Cloud's capabilities with automatic API validation, deprecation detection, and intelligent error handling.
44

5-
[![npm version](https://img.shields.io/npm/v/n8n-nodes-confluence-cloud.svg)](https://www.npmjs.com/package/n8n-nodes-confluence-cloud)
5+
[![npm version](https://img.shields.io/npm/v/@conciso/n8n-nodes-confluence-cloud.svg)](https://www.npmjs.com/package/@conciso/n8n-nodes-confluence-cloud)
66
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
77

88
## ✨ Features
@@ -25,11 +25,11 @@ Install the node using n8n's Community Nodes feature:
2525

2626
1. **Via n8n Interface:**
2727
- Go to **Settings****Community Nodes**
28-
- Install package: `n8n-nodes-confluence-cloud`
28+
- Install package: `@conciso/n8n-nodes-confluence-cloud`
2929

3030
2. **Via npm (for self-hosted n8n):**
3131
```bash
32-
npm install n8n-nodes-confluence-cloud
32+
npm install @conciso/n8n-nodes-confluence-cloud
3333
```
3434

3535
For detailed installation instructions, see the [n8n Community Nodes documentation](https://docs.n8n.io/integrations/community-nodes/installation/).

0 commit comments

Comments
 (0)