Skip to content

Conversation

@jsoref
Copy link
Contributor

@jsoref jsoref commented Jan 25, 2026

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

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>
@jsoref jsoref requested a review from a team as a code owner January 25, 2026 06:23
[Trait("Level", "L0")]
[Trait("Category", "Worker")]
public async Task UploadDiganosticLogIfEnvironmentVariableSet()
public async Task UploadDiagnosticLogIfEnvironmentVariableSet()
Copy link
Contributor Author

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");
Copy link
Contributor Author

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
}
Copy link
Contributor Author

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
Copy link
Contributor Author

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.
Copy link
Contributor Author

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.
Copy link
Contributor Author

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.

@MikeMcC399
Copy link

@jsoref

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:

Thank you for your interest in this GitHub repo, however, right now we are not taking contributions.

One of the maintainers might like to comment if this is still the current situation.

@jsoref
Copy link
Contributor Author

jsoref commented Feb 8, 2026

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.

@jsoref
Copy link
Contributor Author

jsoref commented Feb 9, 2026

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: ![trust ca cert](./../res/macOStrustCA.gif)
- 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
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.


#---------------------------------------
# Unattend config
# Unattended config
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Copy link
Contributor Author

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.

/// <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.
Copy link
Contributor

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:
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
/// 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:

@salmanmkc
Copy link
Contributor

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>
jsoref added 24 commits February 9, 2026 19:08
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>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

Error Logs Spelling Mistake

3 participants