Conversation
Author
kuhe
force-pushed
the
kuhe/chore/gitignore
branch
from
September 15, 2026 19:34
7cae9c5 to
01ee9ac
Compare
kuhe
force-pushed
the
kuhe/chore/gitignore
branch
from
September 15, 2026 20:34
01ee9ac to
2676852
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
I would like to designate a root
/workspacefolder as gitignored so I can write scripts inside the folder.Reason: compatibility with script-runner conventions
SDK developers may find themselves with many scratch files that execute specific SDK behaviors over time when working/triaging issues. For example:
etc. etc.
These files are not versioned, but can accumulate over time. When working with multiple products and SDKs, the number of workspaces and scratch files multiplies.
The script-runner helper has the following syntax and behavior:
r <fuzzy filename match>e.g.
r perf 3 4will match to
/workspace/comparing-perf-v3-v4.pyand run it with python based on extension matching.It is programmed to search only the
/workspacelocal folder depending on which repository folder it is being run from. Therefore, I would like to establish/workspaceas an ignored folder across SDK products, and distribute therrunner as a developer tool.The runner script: https://pypi.org/project/workspace-runner/