Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
luketomlinson committed Jun 29, 2021
1 parent d984387 commit c98d3a1
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion packages/core/src/core.ts
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ export function warning(message: string | Error, properties: AnnotationPropertie
* @param message notice issue message. Errors will be converted to string via toString()
* @param properties optional properties to add to the annotation.
*/
export function notice(message: string | Error, properties: AnnotationProperties = {}): void {
export function notice(message: string | Error, properties: AnnotationProperties = {}): void {
issueCommand('warning', toCommandProperties(properties), message instanceof Error ? message.toString() : message)
}

Expand Down
1 change: 0 additions & 1 deletion packages/core/src/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ export function toCommandValue(input: any): string {
* @param annotationProperties
* @returns The command properties to send with the actual annotaiton command
* See: https://github.com/actions/runner/blob/ee34f4842e747b452e13235836c92b2bb1606816/src/Runner.Worker/ActionCommandManager.cs#L566
* Th
*/
export function toCommandProperties(annotationProperties: AnnotationProperties): CommandProperties {
return {
Expand Down

0 comments on commit c98d3a1

Please sign in to comment.