-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Spelling #4209
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Spelling #4209
Conversation
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
| [Trait("Level", "L0")] | ||
| [Trait("Category", "Worker")] | ||
| public async Task UploadDiganosticLogIfEnvironmentVariableSet() | ||
| public async Task UploadDiagnosticLogIfEnvironmentVariableSet() |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
-Diganostic
+Diagnostic| public override VssCredentials GetVssCredentials(IHostContext context, bool allowAuthUrlV2) | ||
| { | ||
| Tracing trace = context.GetTrace("OuthAccessToken"); | ||
| Tracing trace = context.GetTrace("OAuthAccessToken"); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
?
| } | ||
| } | ||
| } No newline at end of file | ||
| } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
vscode made me do it?
| @@ -1,4 +1,4 @@ | |||
| #nullable disable // Consider removing in the future to minimize likelihood of NullReferenceException; refer https://learn.microsoft.com/en-us/dotnet/csharp/nullable-references | |||
| #nullable disable // Consider removing in the future to minimize likelihood of NullReferenceException; refer https://learn.microsoft.com/en-us/dotnet/csharp/nullable-references | |||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm not at all sure why these lines are considered different
| else | ||
| { | ||
| // retry till reach lockeduntil + 5 mins extra buffer. | ||
| // retry until locked-until + 5 mins extra buffer. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
till is a really odd word to use...
|
|
||
| // fetch lfs object upfront, this will avoid fetch lfs object during checkout which cause checkout taking forever | ||
| // since checkout will fetch lfs object 1 at a time, while git lfs fetch will fetch lfs object in parallel. | ||
| // since checkout will fetch lfs object one at a time, while git lfs fetch will fetch lfs object in parallel. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There's a general rule that discourages using small numbers (1). I haven't applied that rule completely, but In cases of 1 at a time which is really the phrase one-at-a-time, I have replaced 1 with one.
|
You've done a lot of work here! I wonder if you've noticed https://github.com/actions/runner/blob/main/README.md#note where it says:
One of the maintainers might like to comment if this is still the current situation. |
|
I spoke with one of the team members in December. The short of it is that they allocated a lot of resources on something that didn't work out and that starved their capacity to properly maintain their repositories. The item in the read me is their attempt at honesty. They do hope to work on the backlog of contributions for at least one repository (by Q2? I can't remember) and get things in shape and then keep it that way and work on another. They hadn't made a definite decision as to which repository, but this was one they were considering. The other repositories in the organization probably also should have the same note but they didn't allocate the resources to do that. |
|
I should note that the work I did in this PR is fairly cheap for me. I do it quite often as it exercises the product I'm developing. Each time I do so is a chance for me to improve things – i.e. I learn and my product improves whether or not a PR is made or merged. For this repository, I have had a PR merged since that notice was added, although it was admittedly a smaller PR. |
| - macOS:  | ||
| - Linux: Refer to the distribution documentation | ||
| 1. RedHat: https://www.redhat.com/sysadmin/ca-certificates-cli | ||
| 1. Red Hat: https://www.redhat.com/sysadmin/ca-certificates-cli |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
|
|
||
| #--------------------------------------- | ||
| # Unattend config | ||
| # Unattended config |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think unattend is intentional here, for example: https://learn.microsoft.com/en-us/windows-hardware/manufacture/desktop/update-windows-settings-and-scripts-create-your-own-answer-file-sxs?view=windows-11
Thoughts? @TingluoHuang
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah, I remember unattend for Windows from ages ago.
I figured that while it might technically refer to a thing, unless someone was referring to a file in which case they could spell out the filename (unattend.xml), they should use a human readable term.
src/Runner.Listener/Configuration/WindowsServiceControlManager.cs
Outdated
Show resolved
Hide resolved
| /// <remarks> | ||
| /// "x-mvwit" is here as it is used and saved to work item history rich HTML changes. It is used to reference other work | ||
| /// items in the list. If we remove it from this list, it will not be a navigatable link in e.g. Web Access. | ||
| /// items in the list. If we remove it from this list, it will not be a navigable link in e.g. Web Access. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
wow TIL this as well
| /// <returns>The base Uri with the relativePath appended to it.</returns> | ||
| /// <remarks> | ||
| /// This is intended to be an alternative the Uri constructor, which can remove several path segments from your arguments. For example: | ||
| /// This is intended to be an alternative to the Uri constructor, which can remove several path segments from your arguments. For example: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| /// This is intended to be an alternative to the Uri constructor, which can remove several path segments from your arguments. For example: | |
| /// This is intended to be an alternative to the URI constructor, which can remove several path segments from your arguments. For example: |
|
I will continue reviewing at another point since almost midnight, getting tired but thanks so much for this @jsoref, nice to see you here! |
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
This PR corrects misspellings identified by the check-spelling action
The misspellings have been reported at https://github.com/jsoref/actions-runner/actions/runs/21328179241/attempts/1
The action reports that the changes in this PR would make it mostly happy: https://github.com/jsoref/actions-runner/actions/runs/21328179502/attempts/1