Update @actions/github to 5.0.1 (#707)

* Update github package

* Update dist

* Use @actions/github@5.0.1

* Cleanup

* More cleanup
This commit is contained in:
Luke Tomlinson
2022-03-31 15:38:16 -04:00
committed by GitHub
parent 74dfff0835
commit a88f7b30b9
14 changed files with 3214 additions and 926 deletions

View File

@@ -1,6 +1,6 @@
import {IUser} from './user';
export interface IComment {
user: IUser;
body: string;
user: IUser | null;
body?: string;
}