accept-to-ship-action 0.8.6 → 0.8.7

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.
Binary file
@@ -19999,6 +19999,11 @@ export type ProjectV2SingleSelectFieldOptionInput = {
19999
19999
  color: ProjectV2SingleSelectFieldOptionColor;
20000
20000
  /** The description text of the option */
20001
20001
  description: Scalars['String']['input'];
20002
+ /**
20003
+ * The ID of an existing single select option. Include this to preserve the
20004
+ * option's identity during updates, preventing item field values from being cleared.
20005
+ */
20006
+ id?: InputMaybe<Scalars['String']['input']>;
20002
20007
  /** The name of the option */
20003
20008
  name: Scalars['String']['input'];
20004
20009
  };
@@ -29924,7 +29929,7 @@ export type TagNamePatternParametersInput = {
29924
29929
  pattern: Scalars['String']['input'];
29925
29930
  };
29926
29931
  /** A team of users in an organization. */
29927
- export type Team = MemberStatusable & Node & Subscribable & {
29932
+ export type Team = MemberStatusable & Node & Subscribable & TeamReviewRequestable & {
29928
29933
  __typename: 'Team';
29929
29934
  /** A list of teams that are ancestors of this team. */
29930
29935
  ancestors: TeamConnection;
@@ -30814,6 +30819,15 @@ export type TeamReviewAssignmentAlgorithm =
30814
30819
  'LOAD_BALANCE'
30815
30820
  /** Alternate reviews between each team member */
30816
30821
  | 'ROUND_ROBIN';
30822
+ /** Represents a team that can be requested to review a pull request. */
30823
+ export type TeamReviewRequestable = {
30824
+ /** The Node ID of the TeamReviewRequestable object */
30825
+ id: Scalars['ID']['output'];
30826
+ /** The name of the team. */
30827
+ name: Scalars['String']['output'];
30828
+ /** A unique, human-readable identifier for the team. */
30829
+ slug: Scalars['String']['output'];
30830
+ };
30817
30831
  /** The role of a user on a team. */
30818
30832
  export type TeamRole =
30819
30833
  /** User has admin rights on the team. */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "accept-to-ship-action",
3
- "version": "0.8.6",
3
+ "version": "0.8.7",
4
4
  "description": "This GitHub Action automatically merges approved pull requests when they include an #accept2ship trigger.",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -40,7 +40,7 @@
40
40
  "@0no-co/graphqlsp": "^1.12.12",
41
41
  "@eslint/eslintrc": "^3.3.3",
42
42
  "@eslint/js": "^10.0.1",
43
- "@graphql-codegen/cli": "6.3.0",
43
+ "@graphql-codegen/cli": "6.3.1",
44
44
  "@graphql-codegen/typescript": "5.0.10",
45
45
  "@graphql-codegen/typescript-document-nodes": "5.0.10",
46
46
  "@graphql-eslint/eslint-plugin": "^4.4.0",