Alex

Results 49 comments of Alex

While less-than-ideal, there is a workaround available: ```js const [started, setStarted] = useState(false); useEffect(() => { start(); setStarted(true); }, []); useEffect(() => { if (started && timeLeft === 0) props.callback();...

Word of caution regarding `zoom`: > Non-standard: This feature is non-standard and is not on a standards track. Do not use it on production sites facing the Web: it will...

@justingrant > So, depending on the use case, either Etc/UTC or UTC may be used. Either way docs should be updated because currently, `README.md` says `UTC` whereas actual code returns...

> It creates an empty volume is all. It doesn't do anything with it. > However, if you mount the postgres volume you'll find it's empty and harmless. To be...

> If you want to take a look and make the code better and you don't break anything, your contribution will be welcome. As much as I'd like to, I...

This is my take at tackling this issue. Below is a quick example and the source code follows. I don't have the capacity to maintain a FOSS library hence providing...

🤔 Maybe something got changed but when I changed `input` to `required: true`, the `workflow_dispatch` form made the field mandatory making it impossible to submit the form w/o supplying a...

Perhaps I am missing something but this feature is already implemented? https://github.com/actions/toolkit/blob/45c49b09df04cff84c5f336f07d5232fa7103761/packages/glob/src/internal-hash-files.ts#L9-L13 Initially, when I used the function with just `globber` parameter, I got exactly the same behaviour as described...

Curiously enough, there is no official documentation for `hashFiles()`. Although, there is a [closed issue](https://github.com/actions/toolkit/issues/472) and a [closed PR](https://github.com/actions/toolkit/pull/830/files) that adds this function.

Can confirm what @sidharthv96 experienced. When using composite custom action, caching from `@actions/cache` would not work, internal env vars were not being populated. After converting to JavaScript custom action, it...