Dave Hirschfeld

Results 475 comments of Dave Hirschfeld
trafficstars

So, the question is how to return all results, similarly to the `--paginate` argument in the `gh` cli?

Ok, changing the UR to the below works: ``` route: GET /orgs/{org}/packages/container/{container}/versions?per_page=100 ``` ...but this will break if you have >100 image versions 🤢 That's just a hack - it...

Silent truncation of data is a pretty user-hostile default which I think deserves a big warning in the README. > **Warning** > *This action only returns the first page of...

> *Do you think it would be reasonable to add a support for auto-pagination in this action?* I very much think it will be worthwhile. Even though my use-case isn't...

I used to use `black`, `ruff` and `isort` to format my code. Now I just use `ruff` and `isort`. When `ruff` supports `multi_line_output=3` I'll be able to just use `ruff`....

> Multi stage builds should handle every use case of squash, as well as many other use cases. Removing squash does not remove any features or functionality, because they are...

@alexivkin - while I can appreciate the sentiment I think it's best to keep the discussion on a professional level. Thinly veiled profanity is best left for vendors whom we...

See also https://github.com/orgs/community/discussions/38262#discussioncomment-6862260

@gr2m has implemented the api in JavaScript which might serve as a useful reference: * https://github.com/gr2m/github-webhook-relay/ * https://github.com/cli/gh-webhook/issues/19#issuecomment-1775719084

Since I'm using `conda` environments, the command should actually be: ```yaml python: ["conda", "run", "-n", "quetz", "--no-capture-output", "--live-stream", "python"] ```