Patrick Florek

Results 40 comments of Patrick Florek

> I don't think that this fixes #447 as that issue is about policyAttachments and Organisational Units Thank you for that hint. So we have to walk the tree and...

I assume you use it inside a lamdba function and not to export it on your cdk construct interfaces. Therefor add it to `devDeps` and let [NodejsFunction](https://github.com/aws/aws-cdk/blob/master/packages/%40aws-cdk/aws-lambda-nodejs/lib/bundling.ts) bundle your lambda...

It's correct that you can't add `express` or `lodash` as dependencies of an `AwsCdkConstructLibrary` in that way. They are not AWS CDK constructs itself, so you won't export them as...

Can't reproduce with `npx projen@latest new typescript-app --package-manager=pnpm` Creates ```typescript const { javascript, typescript } = require('projen'); const project = new typescript.TypeScriptAppProject({ defaultReleaseBranch: 'main', name: 'test', packageManager: javascript.NodePackageManager.PNPM, // deps:...

Do you use GITHUB_TOKEN or a personal token? As I understand the docs, after the self-mutation the token should be expired: https://docs.github.com/en/actions/security-guides/automatic-token-authentication#about-the-github_token-secret

Yes, I had the same problem with GitLab, having a scheduled pipeline updating the dependencies like Github Actions does. I came up with a fragment like this: ```typescript const {...

We are just using `npx conventional-changelog-cli -p angular -i .docs/src/changelog.md -s -r 0` in our ci pipeline

Upgraded to v0.16.2-gitlab.19 and failure to provision runner instances using docker+machine with spot instances https://gitlab.com/gitlab-org/ci-cd/docker-machine/-/issues/100

It seems the latest working docker+machine version also with spot instances is [v0.16.2-gitlab.15](https://gitlab.com/gitlab-org/ci-cd/docker-machine/-/issues/100#note_1264215659). If we pass also `engineInstallURL` as mentioned in https://github.com/pepperize/cdk-autoscaling-gitlab-runner/pull/533 then all our runners are working again. Tested...