@backstage/plugin-scaffolder-backend-module-github 0.7.0 → 0.7.1-next.1
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 +31 -0
- package/dist/actions/github.cjs.js +4 -1
- package/dist/actions/github.cjs.js.map +1 -1
- package/dist/actions/githubActionsDispatch.cjs.js +12 -10
- package/dist/actions/githubActionsDispatch.cjs.js.map +1 -1
- package/dist/actions/githubAutolinks.cjs.js +12 -10
- package/dist/actions/githubAutolinks.cjs.js.map +1 -1
- package/dist/actions/githubBranchProtection.cjs.js +4 -1
- package/dist/actions/githubBranchProtection.cjs.js.map +1 -1
- package/dist/actions/githubDeployKey.cjs.js +4 -1
- package/dist/actions/githubDeployKey.cjs.js.map +1 -1
- package/dist/actions/githubEnvironment.cjs.js +4 -1
- package/dist/actions/githubEnvironment.cjs.js.map +1 -1
- package/dist/actions/githubIssuesLabel.cjs.js +12 -10
- package/dist/actions/githubIssuesLabel.cjs.js.map +1 -1
- package/dist/actions/githubPagesEnable.cjs.js +4 -1
- package/dist/actions/githubPagesEnable.cjs.js.map +1 -1
- package/dist/actions/githubPullRequest.cjs.js +48 -1
- package/dist/actions/githubPullRequest.cjs.js.map +1 -1
- package/dist/actions/githubPullRequest.examples.cjs.js +18 -0
- package/dist/actions/githubPullRequest.examples.cjs.js.map +1 -1
- package/dist/actions/githubRepoCreate.cjs.js +4 -1
- package/dist/actions/githubRepoCreate.cjs.js.map +1 -1
- package/dist/actions/githubRepoPush.cjs.js +4 -1
- package/dist/actions/githubRepoPush.cjs.js.map +1 -1
- package/dist/actions/githubWebhook.cjs.js +12 -10
- package/dist/actions/githubWebhook.cjs.js.map +1 -1
- package/dist/index.d.ts +1 -0
- package/package.json +12 -12
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-scaffolder-backend-module-github",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.1-next.1",
|
|
4
4
|
"description": "The github module for @backstage/plugin-scaffolder-backend",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "backend-plugin-module",
|
|
@@ -50,14 +50,14 @@
|
|
|
50
50
|
"test": "backstage-cli package test"
|
|
51
51
|
},
|
|
52
52
|
"dependencies": {
|
|
53
|
-
"@backstage/backend-plugin-api": "
|
|
54
|
-
"@backstage/catalog-client": "
|
|
55
|
-
"@backstage/catalog-model": "
|
|
56
|
-
"@backstage/config": "
|
|
57
|
-
"@backstage/errors": "
|
|
58
|
-
"@backstage/integration": "
|
|
59
|
-
"@backstage/plugin-scaffolder-node": "
|
|
60
|
-
"@backstage/types": "
|
|
53
|
+
"@backstage/backend-plugin-api": "1.3.1-next.1",
|
|
54
|
+
"@backstage/catalog-client": "1.10.0-next.0",
|
|
55
|
+
"@backstage/catalog-model": "1.7.3",
|
|
56
|
+
"@backstage/config": "1.3.2",
|
|
57
|
+
"@backstage/errors": "1.2.7",
|
|
58
|
+
"@backstage/integration": "1.16.4-next.1",
|
|
59
|
+
"@backstage/plugin-scaffolder-node": "0.8.2-next.1",
|
|
60
|
+
"@backstage/types": "1.2.1",
|
|
61
61
|
"@octokit/webhooks": "^10.9.2",
|
|
62
62
|
"libsodium-wrappers": "^0.7.11",
|
|
63
63
|
"octokit": "^3.0.0",
|
|
@@ -65,9 +65,9 @@
|
|
|
65
65
|
"yaml": "^2.0.0"
|
|
66
66
|
},
|
|
67
67
|
"devDependencies": {
|
|
68
|
-
"@backstage/backend-test-utils": "
|
|
69
|
-
"@backstage/cli": "
|
|
70
|
-
"@backstage/plugin-scaffolder-node-test-utils": "
|
|
68
|
+
"@backstage/backend-test-utils": "1.5.0-next.1",
|
|
69
|
+
"@backstage/cli": "0.32.1-next.1",
|
|
70
|
+
"@backstage/plugin-scaffolder-node-test-utils": "0.2.2-next.1",
|
|
71
71
|
"@types/libsodium-wrappers": "^0.7.10",
|
|
72
72
|
"fs-extra": "^11.2.0",
|
|
73
73
|
"jsonschema": "^1.2.6"
|