Improve error report for invalid action.yml (#3106)

This commit is contained in:
Josh Soref
2024-02-06 08:40:53 -05:00
committed by GitHub
parent bf0e76631b
commit fa874cf314
2 changed files with 2 additions and 2 deletions

View File

@@ -144,7 +144,7 @@ namespace GitHub.Runner.Worker
executionContext.Error(error.Message);
}
throw new ArgumentException($"Fail to load {fileRelativePath}");
throw new ArgumentException($"Failed to load {fileRelativePath}");
}
if (actionDefinition.Execution == null)