From 7b03699fbe2b7f2cc1c5f5d446abb1f006b94ffc Mon Sep 17 00:00:00 2001 From: Lucas Costi Date: Mon, 8 Feb 2021 15:23:14 +1000 Subject: [PATCH] `--check` strings grammar improvements (#972) --- src/Runner.Listener/Checks/ActionsCheck.cs | 2 +- src/Runner.Listener/Checks/GitCheck.cs | 2 +- src/Runner.Listener/Checks/InternetCheck.cs | 2 +- src/Runner.Listener/Checks/NodeJsCheck.cs | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Runner.Listener/Checks/ActionsCheck.cs b/src/Runner.Listener/Checks/ActionsCheck.cs index d489d7ccf..a2a373f0a 100644 --- a/src/Runner.Listener/Checks/ActionsCheck.cs +++ b/src/Runner.Listener/Checks/ActionsCheck.cs @@ -15,7 +15,7 @@ namespace GitHub.Runner.Listener.Check public string CheckName => "GitHub Actions Connection"; - public string CheckDescription => "Make sure the actions runner have access to the GitHub Actions Service."; + public string CheckDescription => "Check if the Actions runner has access to the GitHub Actions service."; public string CheckLog => _logFile; diff --git a/src/Runner.Listener/Checks/GitCheck.cs b/src/Runner.Listener/Checks/GitCheck.cs index b3ecd6f3c..201210a7b 100644 --- a/src/Runner.Listener/Checks/GitCheck.cs +++ b/src/Runner.Listener/Checks/GitCheck.cs @@ -19,7 +19,7 @@ namespace GitHub.Runner.Listener.Check public string CheckName => "Git Certificate/Proxy Validation"; - public string CheckDescription => "Make sure the git cli can access to GitHub.com or the GitHub Enterprise Server."; + public string CheckDescription => "Check if the Git CLI can access GitHub.com or GitHub Enterprise Server."; public string CheckLog => _logFile; diff --git a/src/Runner.Listener/Checks/InternetCheck.cs b/src/Runner.Listener/Checks/InternetCheck.cs index 7933a8b37..69d550ca1 100644 --- a/src/Runner.Listener/Checks/InternetCheck.cs +++ b/src/Runner.Listener/Checks/InternetCheck.cs @@ -15,7 +15,7 @@ namespace GitHub.Runner.Listener.Check public string CheckName => "Internet Connection"; - public string CheckDescription => "Make sure the actions runner have access to public internet."; + public string CheckDescription => "Check if the Actions runner has internet access."; public string CheckLog => _logFile; diff --git a/src/Runner.Listener/Checks/NodeJsCheck.cs b/src/Runner.Listener/Checks/NodeJsCheck.cs index d74aa02d4..2b5586299 100644 --- a/src/Runner.Listener/Checks/NodeJsCheck.cs +++ b/src/Runner.Listener/Checks/NodeJsCheck.cs @@ -18,7 +18,7 @@ namespace GitHub.Runner.Listener.Check public string CheckName => "Node.js Certificate/Proxy Validation"; - public string CheckDescription => "Make sure the node.js have access to GitHub.com or the GitHub Enterprise Server."; + public string CheckDescription => "Check if Node.js has access to GitHub.com or GitHub Enterprise Server."; public string CheckLog => _logFile;