typescript-github-action-template 0.2.28 → 0.2.30

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,10 +2287,7 @@ 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
- /**
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
- */
2290
+ /** The reason the issue state was changed to closed. */
2294
2291
  stateReason?: Maybe<IssueStateReason>;
2295
2292
  /** The HTTP URL for this closed event. */
2296
2293
  url: Scalars['URI']['output'];
@@ -8870,10 +8867,7 @@ export type Issue = Assignable & Closable & Comment & Deletable & Labelable & Lo
8870
8867
  resourcePath: Scalars['URI']['output'];
8871
8868
  /** Identifies the state of the issue. */
8872
8869
  state: IssueState;
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
- */
8870
+ /** Identifies the reason for the issue state. */
8877
8871
  stateReason?: Maybe<IssueStateReason>;
8878
8872
  /** A list of sub-issues associated with the Issue. */
8879
8873
  subIssues: IssueConnection;
@@ -21498,6 +21492,8 @@ export type Release = Node & Reactable & UniformResourceLocatable & {
21498
21492
  descriptionHTML?: Maybe<Scalars['HTML']['output']>;
21499
21493
  /** The Node ID of the Release object */
21500
21494
  id: Scalars['ID']['output'];
21495
+ /** Whether or not the release is immutable */
21496
+ immutable: Scalars['Boolean']['output'];
21501
21497
  /** Whether or not the release is a draft */
21502
21498
  isDraft: Scalars['Boolean']['output'];
21503
21499
  /** Whether or not the release is the latest releast */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "typescript-github-action-template",
3
- "version": "0.2.28",
3
+ "version": "0.2.30",
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",