Convert action to TypeScript

This commit is contained in:
Nick Alteen
2025-02-19 13:47:20 -05:00
parent cbfc30b14e
commit ee654d9b4e
22 changed files with 47408 additions and 443 deletions
Generated Vendored
+1
View File
@@ -0,0 +1 @@
export {};
Generated Vendored
+34859
View File
File diff suppressed because one or more lines are too long
Generated Vendored
+1
View File
File diff suppressed because one or more lines are too long
Generated Vendored
+16
View File
@@ -0,0 +1,16 @@
import { Octokit } from '@octokit/rest';
export declare function run(): Promise<void>;
/**
* Checks if this is the user's first issue.
*
* @param octokit Octokit instance
* @returns true if this is the user's first issue
*/
export declare function isFirstIssue(octokit: Octokit): Promise<boolean>;
/**
* Checks if this is the user's first pull request.
*
* @param octokit Octokit instance
* @returns true if this is the user's first pull request
*/
export declare function isFirstPullRequest(octokit: Octokit): Promise<boolean>;