Michael Joseph Rosenthal

Results 149 comments of Michael Joseph Rosenthal

@Munksgaard I think this should work - it's roughly what I do: ```sql create table test.user_file ( user_id INTEGER NOT NULL REFERENCES test.user(id), primary key (id), ) inherits (test.file); ```...

> If you have a concrete use case you should share it Every entity in my system inherits from a `base` table that is more or less: ```sql create table...

agreed – I think it should actually be `attrs.dataclasses`, such that migrating from the standard lib is just adding the prefix: `sed 's/from dataclasses import/from attrs.dataclasses import'`

I am experiencing the same `{"data":{"organization":{"samlIdentityProvider":null}}}` issue making requests with both * a PAT with `admin:org` and `admin:enterprise` permissions * as well as a Github App with fairly substantial permissions...

What I've learned since the above: * is that when enterprise saml identity mapping is on, `organization.samlIdentityProvider` is _not_ a view into the enterprise identity mapping, and there is no...

Thanks! I gave it a quick test using my affected code and it seems to solve the issue. Worth noting that I ended up making the design decision to start...

what's the status of this? Is it safe to use the current head of the source branch atm?

@cktaylor this is true, but a much harder thing to put guard rails on, as team size can change externally and cause issues

What about [searching for repos that _extend a changed config](https://github.com/search?l=YAML&q=org%3Aprobot+_extends%3A&type=Code), and then calling `syncSettings` for each? IMO, this should maybe be an [octokit-plugin-config](http://github.com/probot/octokit-plugin-config) concern, or a standalone helper. A robust...

is this not as simple as `cd packages/my-package && gitpkg publish`? Unless you mean publishing and depending on all workspaces at once, which doesn't sound doable (aside from writing a...