Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion execute-workflow/index.mts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import type * as Core from '@actions/core';
import { type context as Context, type getOctokit } from '@actions/github';
import type { context as Context, getOctokit } from '@actions/github';

import * as PackageJSON from '../package.json' with { type: 'json' };

Expand Down
2 changes: 1 addition & 1 deletion signed-commit/index.mts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import * as childProcess from 'node:child_process';
import * as fs from 'node:fs/promises';

import type * as Core from '@actions/core';
import { type getOctokit } from '@actions/github';
import type { getOctokit } from '@actions/github';

type Octokit = ReturnType<typeof getOctokit>;

Expand Down
2 changes: 1 addition & 1 deletion wait-for-checks/index.mts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import type * as Core from '@actions/core';
import { type context as Context, type getOctokit } from '@actions/github';
import type { context as Context, getOctokit } from '@actions/github';

import * as PackageJSON from '../package.json' with { type: 'json' };

Expand Down
Loading