typescript-github-action-template 0.2.26 → 0.2.27

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.
@@ -2287,7 +2287,10 @@ export type ClosedEvent = Node & UniformResourceLocatable & {
2287
2287
  id: Scalars['ID']['output'];
2288
2288
  /** The HTTP path for this closed event. */
2289
2289
  resourcePath: Scalars['URI']['output'];
2290
- /** The reason the issue state was changed to closed. */
2290
+ /**
2291
+ * The reason the issue state was changed to closed.
2292
+ * @deprecated The state reason for duplicate issue is now returned by default. Removal on 2025-10-01 UTC.
2293
+ */
2291
2294
  stateReason?: Maybe<IssueStateReason>;
2292
2295
  /** The HTTP URL for this closed event. */
2293
2296
  url: Scalars['URI']['output'];
@@ -8867,7 +8870,10 @@ export type Issue = Assignable & Closable & Comment & Deletable & Labelable & Lo
8867
8870
  resourcePath: Scalars['URI']['output'];
8868
8871
  /** Identifies the state of the issue. */
8869
8872
  state: IssueState;
8870
- /** Identifies the reason for the issue state. */
8873
+ /**
8874
+ * Identifies the reason for the issue state.
8875
+ * @deprecated The state reason for duplicate issue is now returned by default. Removal on 2025-10-01 UTC.
8876
+ */
8871
8877
  stateReason?: Maybe<IssueStateReason>;
8872
8878
  /** A list of sub-issues associated with the Issue. */
8873
8879
  subIssues: IssueConnection;
@@ -9307,10 +9313,7 @@ export type IssueState =
9307
9313
  export type IssueStateReason =
9308
9314
  /** An issue that has been closed as completed */
9309
9315
  'COMPLETED'
9310
- /**
9311
- * An issue that has been closed as a duplicate. To retrieve this value, set
9312
- * `(enableDuplicate: true)` when querying the stateReason field.
9313
- */
9316
+ /** An issue that has been closed as a duplicate. */
9314
9317
  | 'DUPLICATE'
9315
9318
  /** An issue that has been closed as not planned */
9316
9319
  | 'NOT_PLANNED'
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "typescript-github-action-template",
3
- "version": "0.2.26",
3
+ "version": "0.2.27",
4
4
  "description": "A template to create custom GitHub Action with TypeScript/JavaScript.",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.js",