@backstage/plugin-scaffolder-backend-module-github 0.1.0-next.0 → 0.1.1-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 +29 -0
- package/dist/index.cjs.js +110 -20
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +16 -1
- package/package.json +7 -7
package/dist/index.d.ts
CHANGED
|
@@ -324,4 +324,19 @@ declare function createPublishGithubAction(options: {
|
|
|
324
324
|
requiredCommitSigning?: boolean | undefined;
|
|
325
325
|
}, _backstage_types.JsonObject>;
|
|
326
326
|
|
|
327
|
-
|
|
327
|
+
/**
|
|
328
|
+
* Create an autolink reference for a repository
|
|
329
|
+
* @public
|
|
330
|
+
*/
|
|
331
|
+
declare function createGithubAutolinksAction(options: {
|
|
332
|
+
integrations: ScmIntegrations;
|
|
333
|
+
githubCredentialsProvider?: GithubCredentialsProvider;
|
|
334
|
+
}): _backstage_plugin_scaffolder_node.TemplateAction<{
|
|
335
|
+
repoUrl: string;
|
|
336
|
+
keyPrefix: string;
|
|
337
|
+
urlTemplate: string;
|
|
338
|
+
isAlphanumeric?: boolean | undefined;
|
|
339
|
+
token?: string | undefined;
|
|
340
|
+
}, _backstage_types.JsonObject>;
|
|
341
|
+
|
|
342
|
+
export { CreateGithubPullRequestActionOptions, createGithubActionsDispatchAction, createGithubAutolinksAction, createGithubDeployKeyAction, createGithubEnvironmentAction, createGithubIssuesLabelAction, createGithubRepoCreateAction, createGithubRepoPushAction, createGithubWebhookAction, createPublishGithubAction, createPublishGithubPullRequestAction };
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-scaffolder-backend-module-github",
|
|
3
3
|
"description": "The github module for @backstage/plugin-scaffolder-backend",
|
|
4
|
-
"version": "0.1.
|
|
4
|
+
"version": "0.1.1-next.0",
|
|
5
5
|
"main": "dist/index.cjs.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"license": "Apache-2.0",
|
|
@@ -23,21 +23,21 @@
|
|
|
23
23
|
"postpack": "backstage-cli package postpack"
|
|
24
24
|
},
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"@backstage/backend-common": "^0.20.
|
|
26
|
+
"@backstage/backend-common": "^0.20.1-next.0",
|
|
27
27
|
"@backstage/config": "^1.1.1",
|
|
28
28
|
"@backstage/errors": "^1.2.3",
|
|
29
|
-
"@backstage/integration": "^1.8.0
|
|
30
|
-
"@backstage/plugin-scaffolder-node": "^0.2.
|
|
29
|
+
"@backstage/integration": "^1.8.0",
|
|
30
|
+
"@backstage/plugin-scaffolder-node": "^0.2.10-next.0",
|
|
31
31
|
"@octokit/webhooks": "^10.0.0",
|
|
32
32
|
"libsodium-wrappers": "^0.7.11",
|
|
33
|
-
"octokit": "^
|
|
33
|
+
"octokit": "^3.0.0",
|
|
34
34
|
"octokit-plugin-create-pull-request": "^3.10.0",
|
|
35
35
|
"winston": "^3.2.1",
|
|
36
36
|
"yaml": "^2.0.0"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
|
-
"@backstage/backend-test-utils": "^0.2.
|
|
40
|
-
"@backstage/cli": "^0.25.
|
|
39
|
+
"@backstage/backend-test-utils": "^0.2.10-next.0",
|
|
40
|
+
"@backstage/cli": "^0.25.1-next.0",
|
|
41
41
|
"@types/libsodium-wrappers": "^0.7.10",
|
|
42
42
|
"fs-extra": "10.1.0",
|
|
43
43
|
"jest-when": "^3.1.0",
|