@backstage/plugin-scaffolder-backend-module-github 0.2.8-next.2 → 0.2.9-next.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +26 -0
- package/dist/index.cjs.js +129 -20
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +6 -0
- package/package.json +8 -8
package/dist/index.d.ts
CHANGED
|
@@ -238,6 +238,10 @@ interface CreateGithubPullRequestActionOptions {
|
|
|
238
238
|
};
|
|
239
239
|
} | null>;
|
|
240
240
|
}>;
|
|
241
|
+
/**
|
|
242
|
+
* An instance of {@link @backstage/config#Config} that will be used in the action.
|
|
243
|
+
*/
|
|
244
|
+
config?: Config;
|
|
241
245
|
}
|
|
242
246
|
/**
|
|
243
247
|
* Creates a Github Pull Request action.
|
|
@@ -258,6 +262,8 @@ declare const createPublishGithubPullRequestAction: (options: CreateGithubPullRe
|
|
|
258
262
|
commitMessage?: string | undefined;
|
|
259
263
|
update?: boolean | undefined;
|
|
260
264
|
forceFork?: boolean | undefined;
|
|
265
|
+
gitAuthorName?: string | undefined;
|
|
266
|
+
gitAuthorEmail?: string | undefined;
|
|
261
267
|
}, _backstage_types.JsonObject>;
|
|
262
268
|
|
|
263
269
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-scaffolder-backend-module-github",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.9-next.0",
|
|
4
4
|
"description": "The github module for @backstage/plugin-scaffolder-backend",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "backend-plugin-module"
|
|
@@ -37,12 +37,12 @@
|
|
|
37
37
|
"test": "backstage-cli package test"
|
|
38
38
|
},
|
|
39
39
|
"dependencies": {
|
|
40
|
-
"@backstage/backend-common": "^0.22.
|
|
41
|
-
"@backstage/backend-plugin-api": "^0.6.
|
|
40
|
+
"@backstage/backend-common": "^0.22.1-next.0",
|
|
41
|
+
"@backstage/backend-plugin-api": "^0.6.19-next.0",
|
|
42
42
|
"@backstage/config": "^1.2.0",
|
|
43
43
|
"@backstage/errors": "^1.2.4",
|
|
44
|
-
"@backstage/integration": "^1.11.0
|
|
45
|
-
"@backstage/plugin-scaffolder-node": "^0.4.
|
|
44
|
+
"@backstage/integration": "^1.11.0",
|
|
45
|
+
"@backstage/plugin-scaffolder-node": "^0.4.5-next.0",
|
|
46
46
|
"@octokit/webhooks": "^10.0.0",
|
|
47
47
|
"libsodium-wrappers": "^0.7.11",
|
|
48
48
|
"octokit": "^3.0.0",
|
|
@@ -50,9 +50,9 @@
|
|
|
50
50
|
"yaml": "^2.0.0"
|
|
51
51
|
},
|
|
52
52
|
"devDependencies": {
|
|
53
|
-
"@backstage/backend-test-utils": "^0.3.
|
|
54
|
-
"@backstage/cli": "^0.26.
|
|
55
|
-
"@backstage/plugin-scaffolder-node-test-utils": "^0.1.
|
|
53
|
+
"@backstage/backend-test-utils": "^0.3.9-next.0",
|
|
54
|
+
"@backstage/cli": "^0.26.6-next.0",
|
|
55
|
+
"@backstage/plugin-scaffolder-node-test-utils": "^0.1.5-next.0",
|
|
56
56
|
"@types/libsodium-wrappers": "^0.7.10",
|
|
57
57
|
"fs-extra": "^11.2.0",
|
|
58
58
|
"jsonschema": "^1.2.6"
|