Skip to content

Commit 96c25f6

Browse files
committed
Merge branch 'master' into issue-11736
2 parents 68d1632 + 18b47d5 commit 96c25f6

File tree

81 files changed

+1181
-379
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

81 files changed

+1181
-379
lines changed

blog/pi/poetry.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

components/fly_io/fly_io.app.mjs

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
export default {
2+
type: "app",
3+
app: "fly_io",
4+
propDefinitions: {},
5+
methods: {
6+
// this.$auth contains connected account data
7+
authKeys() {
8+
console.log(Object.keys(this.$auth));
9+
},
10+
},
11+
};

components/fly_io/package.json

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"name": "@pipedream/fly_io",
3+
"version": "0.0.1",
4+
"description": "Pipedream Fly.io Components",
5+
"main": "fly_io.app.mjs",
6+
"keywords": [
7+
"pipedream",
8+
"fly_io"
9+
],
10+
"homepage": "https://pipedream.com/apps/fly_io",
11+
"author": "Pipedream <support@pipedream.com> (https://pipedream.com/)",
12+
"publishConfig": {
13+
"access": "public"
14+
}
15+
}

components/gitlab/actions/create-branch/create-branch.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default {
44
key: "gitlab-create-branch",
55
name: "Create Branch",
66
description: "Create a new branch in the repository. [See the documentation](https://docs.gitlab.com/ee/api/branches.html#create-repository-branch)",
7-
version: "0.3.1",
7+
version: "0.3.2",
88
type: "action",
99
props: {
1010
gitlab,

components/gitlab/actions/create-epic/create-epic.mjs

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,25 +5,26 @@ export default {
55
key: "gitlab-create-epic",
66
name: "Create Epic",
77
description: "Creates a new epic. [See the documentation](https://docs.gitlab.com/ee/api/epics.html#new-epic)",
8-
version: "0.0.3",
8+
version: "0.0.4",
99
type: "action",
1010
props: {
1111
gitlab,
12-
groupPath: {
12+
groupId: {
1313
propDefinition: [
1414
gitlab,
15-
"groupPath",
15+
"groupId",
1616
],
1717
},
1818
parent_id: {
1919
propDefinition: [
2020
gitlab,
2121
"epicIid",
22-
(c) => ({
23-
groupId: c.groupPath,
22+
({ groupId }) => ({
23+
groupId,
2424
}),
2525
],
2626
label: "Parent ID",
27+
optional: true,
2728
},
2829
title: {
2930
propDefinition: [
@@ -36,8 +37,8 @@ export default {
3637
propDefinition: [
3738
gitlab,
3839
"groupLabels",
39-
(c) => ({
40-
groupId: c.groupPath,
40+
({ groupId }) => ({
41+
groupId,
4142
}),
4243
],
4344
},
@@ -115,7 +116,7 @@ export default {
115116
]));
116117
data.labels = data.labels?.join();
117118

118-
const response = await this.gitlab.createEpic(this.groupPath, {
119+
const response = await this.gitlab.createEpic(this.groupId, {
119120
data,
120121
});
121122
$.export("$summary", `Created epic ${this.title}`);

components/gitlab/actions/create-issue/create-issue.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
key: "gitlab-create-issue",
66
name: "Create issue",
77
description: "Creates a new issue. [See the documentation](https://docs.gitlab.com/ee/api/issues.html#new-issue)",
8-
version: "0.2.1",
8+
version: "0.2.2",
99
type: "action",
1010
props: {
1111
gitlab,

components/gitlab/actions/get-issue/get-issue.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default {
44
key: "gitlab-get-issue",
55
name: "Get Issue",
66
description: "Gets a single issue from repository. [See the documentation](https://docs.gitlab.com/ee/api/issues.html#single-project-issue)",
7-
version: "0.2.1",
7+
version: "0.2.2",
88
type: "action",
99
props: {
1010
gitlab,

components/gitlab/actions/get-repo-branch/get-repo-branch.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default {
44
key: "gitlab-get-repo-branch",
55
name: "Get Repo Branch",
66
description: "Get a single project repository branch. [See the documentation](https://docs.gitlab.com/ee/api/branches.html#get-single-repository-branch)",
7-
version: "0.2.1",
7+
version: "0.2.2",
88
type: "action",
99
props: {
1010
gitlab,

components/gitlab/actions/list-commits/list-commits.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
key: "gitlab-list-commits",
66
name: "List Commits",
77
description: "List commits in a repository branch. [See the documentation](https://docs.gitlab.com/ee/api/commits.html#list-repository-commits)",
8-
version: "0.0.2",
8+
version: "0.0.3",
99
type: "action",
1010
props: {
1111
gitlab,

components/gitlab/actions/list-repo-branches/list-repo-branches.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default {
44
key: "gitlab-list-repo-branches",
55
name: "List Repo Branches",
66
description: "Get a list of repository branches from a project. [See the documentation](https://docs.gitlab.com/ee/api/branches.html#list-repository-branches)",
7-
version: "0.2.1",
7+
version: "0.2.2",
88
type: "action",
99
props: {
1010
gitlab,

0 commit comments

Comments
 (0)