shigupt202 564f76cfe3
Adding logic for glob in file paths (#70)
* Adding logic to parse glob patterns in file paths

* Adding glob node module and updating actions core

* Adding js files

* Resolving PR comments

* Fixing L0 for glob and annotations

* Updating glob call in run

* Updating resolveGlobPatterns
2020-11-26 11:24:03 +05:30

6 lines
197 B
TypeScript

/**
* Sanitizes an input into a string so it can be passed into issueCommand safely
* @param input input to sanitize into a string
*/
export declare function toCommandValue(input: any): string;