Steve Winton

Results 15 comments of Steve Winton

Hey @cwong-scw. I think one way you could achieve this would be to publish [an action](https://docs.github.com/en/free-pro-team@latest/actions/creating-actions/creating-a-javascript-action) to [GitHub's Marketplace](https://github.com/marketplace) that would perform "post-processing" of a SARIF file, before the SARIF...

> Our request here, which I can understand might be fairly low priority, is for a way to append any help text present in the SARIF rule to the main...

This would be a great addition. The change to include a `body` would go here, approximately: https://github.com/swinton/github-rest-apis-for-insomnia/blob/31387a1ebefde9897175494b1bed7ffcb6cf7bec/index.js#L64 However, I don't think [`@octokit/routes`](https://github.com/octokit/routes/tree/master/routes/api.github.com) includes the request bodies, so this would be...

#7 should be easier @IAmHughes, since [`params` are defined in `@octokit/routes`](https://github.com/octokit/routes/blob/1d61032c9b7c21467dd53a1e154509e472d12945/routes/api.github.com/index.json#L10-L27).

This might be worth revisiting now that `@octokit/routes` supports the OpenAPI spec, which specifies [a `requestBody` object](https://swagger.io/specification/#requestBodyObject).

Here's an example `requestBody`, for [the `POST /app/installations/:installation_id/access_tokens` route](https://developer.github.com/v3/apps/#create-a-new-installation-token), note there is an `example` property that we could use: ```json { "content": { "application/json": { "schema": { "type": "object", "properties":...

Thanks @mislav ... > Could you look at our open PRs and check if any address the functionality needed for what you're describing, or should it be a new PR?...

> I haven't tested this, but something like this should work > > ``` > - name: Unset AWS creds env vars > run: | > echo '::set-env name=AWS_ACCESS_KEY_ID::' >...

Nice idea. Would a matrix build work for now? https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions#jobsjob_idstrategymatrix

Thanks @tristanbes. You might not need to use this action any more, as I believe `HTTPie` is now "baked in" to the Actions run-time environment, e.g. you should be able...