@backstage/plugin-scaffolder-backend-module-github 0.0.0-nightly-20260424031925 → 0.0.0-nightly-20260426031943
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 +8 -8
- package/dist/index.d.ts +8 -8
- package/package.json +11 -11
package/CHANGELOG.md
CHANGED
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
# @backstage/plugin-scaffolder-backend-module-github
|
|
2
2
|
|
|
3
|
-
## 0.0.0-nightly-
|
|
3
|
+
## 0.0.0-nightly-20260426031943
|
|
4
4
|
|
|
5
5
|
### Patch Changes
|
|
6
6
|
|
|
7
7
|
- 3846774: Added missing dependencies that were previously only available transitively.
|
|
8
8
|
- Updated dependencies
|
|
9
|
-
- @backstage/errors@0.0.0-nightly-
|
|
10
|
-
- @backstage/catalog-model@0.0.0-nightly-
|
|
11
|
-
- @backstage/plugin-catalog-node@0.0.0-nightly-
|
|
12
|
-
- @backstage/plugin-scaffolder-node@0.0.0-nightly-
|
|
13
|
-
- @backstage/integration@0.0.0-nightly-
|
|
14
|
-
- @backstage/backend-plugin-api@0.0.0-nightly-
|
|
15
|
-
- @backstage/config@0.0.0-nightly-
|
|
9
|
+
- @backstage/errors@0.0.0-nightly-20260426031943
|
|
10
|
+
- @backstage/catalog-model@0.0.0-nightly-20260426031943
|
|
11
|
+
- @backstage/plugin-catalog-node@0.0.0-nightly-20260426031943
|
|
12
|
+
- @backstage/plugin-scaffolder-node@0.0.0-nightly-20260426031943
|
|
13
|
+
- @backstage/integration@0.0.0-nightly-20260426031943
|
|
14
|
+
- @backstage/backend-plugin-api@0.0.0-nightly-20260426031943
|
|
15
|
+
- @backstage/config@0.0.0-nightly-20260426031943
|
|
16
16
|
- @backstage/types@1.2.2
|
|
17
17
|
|
|
18
18
|
## 0.9.9-next.0
|
package/dist/index.d.ts
CHANGED
|
@@ -83,9 +83,9 @@ declare function createGithubRepoCreateAction(options: {
|
|
|
83
83
|
blockCreations?: boolean | undefined;
|
|
84
84
|
branch?: string | undefined;
|
|
85
85
|
bypassPullRequestAllowances?: {
|
|
86
|
+
users?: string[] | undefined;
|
|
86
87
|
apps?: string[] | undefined;
|
|
87
88
|
teams?: string[] | undefined;
|
|
88
|
-
users?: string[] | undefined;
|
|
89
89
|
} | undefined;
|
|
90
90
|
collaborators?: ({
|
|
91
91
|
user: string;
|
|
@@ -123,8 +123,8 @@ declare function createGithubRepoCreateAction(options: {
|
|
|
123
123
|
requiredStatusCheckContexts?: string[] | undefined;
|
|
124
124
|
requireLastPushApproval?: boolean | undefined;
|
|
125
125
|
restrictions?: {
|
|
126
|
-
teams: string[];
|
|
127
126
|
users: string[];
|
|
127
|
+
teams: string[];
|
|
128
128
|
apps?: string[] | undefined;
|
|
129
129
|
} | undefined;
|
|
130
130
|
secrets?: Record<string, string> | undefined;
|
|
@@ -156,14 +156,14 @@ declare function createGithubRepoPushAction(options: {
|
|
|
156
156
|
dismissStaleReviews?: boolean | undefined;
|
|
157
157
|
requiredStatusCheckContexts?: string[] | undefined;
|
|
158
158
|
bypassPullRequestAllowances?: {
|
|
159
|
+
users?: string[] | undefined;
|
|
159
160
|
apps?: string[] | undefined;
|
|
160
161
|
teams?: string[] | undefined;
|
|
161
|
-
users?: string[] | undefined;
|
|
162
162
|
} | undefined;
|
|
163
163
|
requiredApprovingReviewCount?: number | undefined;
|
|
164
164
|
restrictions?: {
|
|
165
|
-
teams: string[];
|
|
166
165
|
users: string[];
|
|
166
|
+
teams: string[];
|
|
167
167
|
apps?: string[] | undefined;
|
|
168
168
|
} | undefined;
|
|
169
169
|
requireBranchesToBeUpToDate?: boolean | undefined;
|
|
@@ -337,14 +337,14 @@ declare function createPublishGithubAction(options: {
|
|
|
337
337
|
homepage?: string | undefined;
|
|
338
338
|
access?: string | undefined;
|
|
339
339
|
bypassPullRequestAllowances?: {
|
|
340
|
+
users?: string[] | undefined;
|
|
340
341
|
apps?: string[] | undefined;
|
|
341
342
|
teams?: string[] | undefined;
|
|
342
|
-
users?: string[] | undefined;
|
|
343
343
|
} | undefined;
|
|
344
344
|
requiredApprovingReviewCount?: number | undefined;
|
|
345
345
|
restrictions?: {
|
|
346
|
-
teams: string[];
|
|
347
346
|
users: string[];
|
|
347
|
+
teams: string[];
|
|
348
348
|
apps?: string[] | undefined;
|
|
349
349
|
} | undefined;
|
|
350
350
|
requireCodeOwnerReviews?: boolean | undefined;
|
|
@@ -447,13 +447,13 @@ declare function createGithubBranchProtectionAction(options: {
|
|
|
447
447
|
requireCodeOwnerReviews?: boolean | undefined;
|
|
448
448
|
dismissStaleReviews?: boolean | undefined;
|
|
449
449
|
bypassPullRequestAllowances?: {
|
|
450
|
+
users?: string[] | undefined;
|
|
450
451
|
apps?: string[] | undefined;
|
|
451
452
|
teams?: string[] | undefined;
|
|
452
|
-
users?: string[] | undefined;
|
|
453
453
|
} | undefined;
|
|
454
454
|
restrictions?: {
|
|
455
|
-
teams: string[];
|
|
456
455
|
users: string[];
|
|
456
|
+
teams: string[];
|
|
457
457
|
apps?: string[] | undefined;
|
|
458
458
|
} | undefined;
|
|
459
459
|
requiredStatusCheckContexts?: string[] | undefined;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-scaffolder-backend-module-github",
|
|
3
|
-
"version": "0.0.0-nightly-
|
|
3
|
+
"version": "0.0.0-nightly-20260426031943",
|
|
4
4
|
"description": "The github module for @backstage/plugin-scaffolder-backend",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "backend-plugin-module",
|
|
@@ -50,13 +50,13 @@
|
|
|
50
50
|
"test": "backstage-cli package test"
|
|
51
51
|
},
|
|
52
52
|
"dependencies": {
|
|
53
|
-
"@backstage/backend-plugin-api": "0.0.0-nightly-
|
|
54
|
-
"@backstage/catalog-model": "0.0.0-nightly-
|
|
55
|
-
"@backstage/config": "0.0.0-nightly-
|
|
56
|
-
"@backstage/errors": "0.0.0-nightly-
|
|
57
|
-
"@backstage/integration": "0.0.0-nightly-
|
|
58
|
-
"@backstage/plugin-catalog-node": "0.0.0-nightly-
|
|
59
|
-
"@backstage/plugin-scaffolder-node": "0.0.0-nightly-
|
|
53
|
+
"@backstage/backend-plugin-api": "0.0.0-nightly-20260426031943",
|
|
54
|
+
"@backstage/catalog-model": "0.0.0-nightly-20260426031943",
|
|
55
|
+
"@backstage/config": "0.0.0-nightly-20260426031943",
|
|
56
|
+
"@backstage/errors": "0.0.0-nightly-20260426031943",
|
|
57
|
+
"@backstage/integration": "0.0.0-nightly-20260426031943",
|
|
58
|
+
"@backstage/plugin-catalog-node": "0.0.0-nightly-20260426031943",
|
|
59
|
+
"@backstage/plugin-scaffolder-node": "0.0.0-nightly-20260426031943",
|
|
60
60
|
"@backstage/types": "1.2.2",
|
|
61
61
|
"@octokit/core": "^5.0.0",
|
|
62
62
|
"@octokit/webhooks": "^10.9.2",
|
|
@@ -67,9 +67,9 @@
|
|
|
67
67
|
"zod": "^3.25.76 || ^4.0.0"
|
|
68
68
|
},
|
|
69
69
|
"devDependencies": {
|
|
70
|
-
"@backstage/backend-test-utils": "0.0.0-nightly-
|
|
71
|
-
"@backstage/cli": "0.0.0-nightly-
|
|
72
|
-
"@backstage/plugin-scaffolder-node-test-utils": "0.0.0-nightly-
|
|
70
|
+
"@backstage/backend-test-utils": "0.0.0-nightly-20260426031943",
|
|
71
|
+
"@backstage/cli": "0.0.0-nightly-20260426031943",
|
|
72
|
+
"@backstage/plugin-scaffolder-node-test-utils": "0.0.0-nightly-20260426031943",
|
|
73
73
|
"@types/libsodium-wrappers": "^0.8.0",
|
|
74
74
|
"fs-extra": "^11.2.0",
|
|
75
75
|
"jsonschema": "^1.2.6"
|