Skip to content

Commit 534dd62

Browse files
committed
chore: remove template mentions
1 parent d7ad2c0 commit 534dd62

File tree

6 files changed

+14
-18
lines changed

6 files changed

+14
-18
lines changed

.devcontainer/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ ENV HOME="/root"
1616
# --------------------------------------
1717
# Need to add the devcontainer workspace folder as a safe directory to enable git
1818
# version control system to be enabled in the containers file system.
19-
RUN git config --global --add safe.directory "/workspaces/plugin-template"
19+
RUN git config --global --add safe.directory "/workspaces/plugin-trello"
2020
# --------------------------------------
2121

2222
# --------------------------------------
@@ -53,7 +53,7 @@ ENV PATH="$PATH:$JAVA_HOME/bin"
5353
# Will load a custom configuration file for Micronaut
5454
ENV MICRONAUT_ENVIRONMENTS=local,override
5555
# Sets the path where you save plugins as Jar and is loaded during the startup process
56-
ENV KESTRA_PLUGINS_PATH="/workspaces/plugin-template/local/plugins"
56+
ENV KESTRA_PLUGINS_PATH="/workspaces/plugin-trello/local/plugins"
5757
# --------------------------------------
5858

5959
# --------------------------------------

.devcontainer/devcontainer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
2-
"name": "plugin-template",
2+
"name": "plugin-trello",
33
"build": {
44
"context": ".",
55
"dockerfile": "Dockerfile"
66
},
7-
"workspaceFolder": "/workspaces/plugin-template",
7+
"workspaceFolder": "/workspaces/plugin-trello",
88
"forwardPorts": [8080],
99
"customizations": {
1010
"vscode": {

README.md

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -36,11 +36,7 @@
3636
<p align="center" style="color:grey;"><i>Get started with Kestra in 3 minutes.</i></p>
3737

3838

39-
# Kestra Plugin Template
40-
41-
> A template for creating Kestra plugins
42-
43-
This repository serves as a general template for creating a new [Kestra](https://github.com/kestra-io/kestra) plugin. It should take only a few minutes! Use this repository as a scaffold to ensure that you've set up the plugin correctly, including unit tests and CI/CD workflows.
39+
# Kestra Trello Plugin
4440

4541
![Kestra orchestrator](https://kestra.io/video.gif)
4642

build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ java {
2929
}
3030

3131
group = "io.kestra.plugin"
32-
description = 'Plugin template for Kestra'
32+
description = 'Atlassian Trello plugin for Kestra'
3333

3434
tasks.withType(JavaCompile).configureEach {
3535
options.encoding = "UTF-8"
@@ -175,8 +175,8 @@ jar {
175175
manifest {
176176
attributes(
177177
"X-Kestra-Name": project.name,
178-
"X-Kestra-Title": "Template",
179-
"X-Kestra-Group": project.group + ".templates",
178+
"X-Kestra-Title": "Atlassian Trello",
179+
"X-Kestra-Group": project.group + ".trello",
180180
"X-Kestra-Description": project.description,
181181
"X-Kestra-Version": project.version
182182
)

settings.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
rootProject.name = 'plugin-template'
1+
rootProject.name = 'plugin-trello'
Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
group: io.kestra.plugin.template
2-
name: "template"
3-
title: "Template"
4-
description: "Plugin template for Kestra"
5-
body: ""
1+
group: io.kestra.plugin.trello
2+
name: "trello"
3+
title: "Atlassian Trello"
4+
description: "Tasks that connect Kestra flows to Atlassian Trello for creating, updating, and retrieving board content."
5+
body: "Use this plugin to integrate Kestra workflows with Trello via the REST API, enabling seamless management of boards, lists, and cards directly from your Kestra flows."
66
videos: []
77
createdBy: "Kestra Core Team"
88
managedBy: "Kestra Core Team"

0 commit comments

Comments
 (0)