typescript-github-action-template 0.2.22 → 0.2.23
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.
|
@@ -1291,6 +1291,8 @@ export type Bot = Actor & Node & UniformResourceLocatable & {
|
|
|
1291
1291
|
export type BotAvatarUrlArgs = {
|
|
1292
1292
|
size?: InputMaybe<Scalars['Int']['input']>;
|
|
1293
1293
|
};
|
|
1294
|
+
/** Used when either Bot or User are accepted. */
|
|
1295
|
+
export type BotOrUser = Bot | User;
|
|
1294
1296
|
/** Types which can be actors for `BranchActorAllowance` objects. */
|
|
1295
1297
|
export type BranchActorAllowanceActor = App | Team | User;
|
|
1296
1298
|
/** Parameters to be used for the branch_name_pattern rule */
|
package/package.json
CHANGED