Miguel Savignano

Results 10 comments of Miguel Savignano

@andrewfenn thanks for the PR y think is a good option, at least have print the message the merge was skipped.

Hello @jgonggrijp, thanks for the issue. I have done some tests, the event never fires the workflow, it seems that the labeled event in a pull request does not allow...

@jgonggrijp, I was wrong the value of `github.ref` in a pull request event is `refs/pull/{{ PR_NUMBER }}/merge`. Debugging with this [run](https://github.com/devmasxtest/test-repository/runs/1573520137?check_suite_focus=true), I found we can fetch the branch name with...

Update express-serve-static-core to latest version ``` npm install @types/[email protected] --save ```

I think the error is only for `storage-node-fs` because use one file for multiple promises this is a more simple example ```typescript const store = new NodeFsStorage('cache/example.json'); const keys =...

@moeroach94 I simplified the example with the 3 modules and the circular dependencies: ```ts import { DynamicModule, forwardRef, Module } from '@nestjs/common'; export class LchemyQuerySequelizeModule { static forFeature({ imports =...

I think the bug is in the headers only accept strings and the source code only allows string values. ```lua for claim, value in pairs(claims) do if type(claim) == "string"...

@garyking You mean this: Open symbol by name Some languages support jumping to a symbol across files with Ctrl+T. Just type the first letter of a type you want to...

for javascript files, what I've tried is that it only searches for symbols between the open files. But I try to find symbols in the workspace :+1:

we can define the file name with `.enc` extension, but take into account the `node-credentials` infer the file type with the extension using this regexp `/^.*\.(yaml)$/` Example encrypt with `.enc`...