Lihua Deng

Results 6 comments of Lihua Deng

@2534290808 我在模拟器与真机在10.3.1重现了这个错误了, RN 0.57.5

![image](https://user-images.githubusercontent.com/19180105/50347987-7c388400-0572-11e9-84a8-31a2ea00b176.png) 我在MJRefresh项目里把Deployment target改为ios9就可以了,默认是ios11

@MichaelHao25 我可以打包,你的情况应该是另外一个问题,我倒没遇到过

@0x5e 我也不用签名,我们可以考虑换一个签名库,或者把签名的代码删除就好了。目前我在自己的项目里边把hermes禁用掉了,不是很稳定不敢用在生产环境,估计还需要一段时间

@nsbarsukov same issue here, I found a solution that works for me ```ts import {Context} from 'probot'; function getWorkflowName( // question: what's different with Context? context: Context | Context |...

@mimartin12 you can use `context.pullRequest()` to get the owner ```ts const params = context.pullRequest() // Returns: {owner: 'username', repo: 'reponame', pull_number: 123} ``` https://probot.github.io/api/latest/classes/context.Context.html#pullRequest Context | probotDocumentation for probot