Evgeny Chernyavskiy

Results 4 comments of Evgeny Chernyavskiy

@moustafab have you worked out a way to deploy PRLint into ECS or as a Lambda?

@mrchief, > I'm using this as a lambda internally. Probot apps can be deployed as lambdas as stated in their docs. There are some quirks though and I can share...

@liormizr, right - since `boto3` is "built into" the runtime, I don't have to define it as a dependency in my `pyproject.toml` / `requirements.txt`. Except `s3path` requires it, so it...

Workaround: ```javascript (() => { let myTask = () => { return gulp .src(['*'], {allowEmpty: true}) .pipe(foo()); }; myTask.description = 'This is my task.'; gulp.task('my-task', myTask); })(); ```