Matthew Bonig

Results 30 comments of Matthew Bonig

So, with the current version, this process can be supported pretty easily with lodash: ``` requestFilter: function (originalObj, propName) { return _.get(originalObj, propName); } ```

@adamcohen That's a good question. I don't recall what I was thinking at the time.

@adamcohen So, I think where my head was: _.get() will take care of nested property names, so 'user.email' (https://lodash.com/docs/4.17.11#get) and allow you a very simple implementation on that requestFilter function....

I tried this all again and this time named the group Admin. This time my user creation works and I'm registered as an admin. Maybe a fluke, but is this...

I think the former of the two examples seems the nicest. I'm not sure I see the security risk of having constructs add their own providers, considering all the other...

I should add... looking through code I suspected it might be an issue with my README.md file, but even if I remove all content and have a blank file, I...

Actually, 0.21.2, must have misread the jsii-verbose output. Reference here: https://github.com/mbonig/secure-bucket/blob/master/package.json Oddly enough this doesn't appear to happen during my Github Actions... https://github.com/mbonig/secure-bucket/runs/432217140?check_suite_focus=true

Just updated to latest versions of everything and I don't get the error anymore. then again, this was just being built on linux whereas my original ticket was WSL2, so...

Having a similar issue when trying to use a custom message: ``` - uses: 8398a7/action-slack@v3 with: status: custom fields: job,repo,message,commit,author,action,pullRequest,workflow,took custom_payload: | { attachments: [{ color: '${{ job.status }}' ===...