Lavi

Results 34 comments of Lavi

As a solution for this feature, I introduce a package similar to gomonkey: [bytedance/mockey](https://github.com/bytedance/mockey). Quick example: ```go origin := Fun mock := mockey.Mock(Fun). Origin(&origin). To(func(p string) string { return origin(p...

Constructing a JSON body in `with` can be challenging. But I have found a simpler way to invoke the GitHub API. `actions/github-script` looks pretty good. ```yaml steps: - id: get_release_notes...

Same. --- Resolved by [Allowing other repositories to access to Actions components in this repository.](https://docs.github.com/repositories/managing-your-repositorys-settings-and-features/enabling-features-for-your-repository/managing-github-actions-settings-for-a-repository#allowing-access-to-components-in-a-private-repository)

The oauth manager has [a default redirect uri validator here](https://github.com/go-oauth2/oauth2/blob/d1b58c7e627024ddaab9cd4a8a5e4676f623bf28/manage/manager.go#L27). It compares whether the redirect uri host and the domain of client match. It's just that it's not mentioned in...

Same issue. I made a sandbox [here](https://codesandbox.io/p/sandbox/purple-paper-dzthxy). It always download before the `done` function execution.

This package [react-csv-downloader](https://www.npmjs.com/package/react-csv-downloader) is working for me.

The latest version seems to have added support for SSH proxy, allowing you to specify a proxy when cloning. e.g. ```go git.CloneContext(ctx, memory.NewStorage(), nil, &git.CloneOptions{ // ... ProxyOptions: transport.ProxyOptions{ URL:...

Same issue. `textAlign` is not working.