Christopher Dignam

Results 173 comments of Christopher Dignam

Also, can you provide a URL for the PR that was closed unintentionally?

Hey @scriptnull, can you send an email to [email protected] and I can ask for more info

@scriptnull The only case I could see where Kodiak might cause a PR to be closed is when the [`merge.delete_branch_on_merge`](https://kodiakhq.com/docs/config-reference#mergedelete_branch_on_merge) setting is enabled. In this case, Kodiak will delete the...

Thanks for the suggestion. Kodiak has partial support for some of the metadata you'd like to record. You can enable [`merge.message.include_pull_request_url`](https://kodiakhq.com/docs/config-reference#mergemessageinclude_pull_request_url) to add the pull request URL to the commit...

@jbergstroem I'm okay with adding templating, but if we can add more boolean options instead I'd prefer that. My thought is that boolean config options are more foolproof, although less...

Hi @gregplaysguitar, thanks for the report. I think the "51 years ago" is a display issue based on how the priority merge feature is implemented. Normally we use the current...

@staabm Would selecting the ["plain_text" body type](https://kodiakhq.com/docs/config-reference#mergemessagebody_type) work for you? Here's a Gist comparing the body types (markdown, HTML, text): https://gist.github.com/chdsbd/649c4bfdf855a71d20eeeae6a6e8d50a I used this PR for an example: https://github.com/redaxo/redaxo/pull/4672

I think if we wanted to add a new configuration option, it could look something like: ```toml # .kodiak.toml [merge.automerge_dependencies] message.body_type = "plain_text" ``` Adding another label-configurable option would look...

If you click the "Detail" section what does the error message say?

This error occurs when the [`PullRequest.mergeStateStatus`](https://docs.github.com/en/graphql/reference/objects#pullrequest) field is [`BLOCKED`](https://docs.github.com/en/graphql/reference/enums#mergestatestatus), but Kodiak can't determine why. Kodiak sets the error message here: https://github.com/chdsbd/kodiak/blob/618993d7db1bf27847d9e938ccef28b084b8a13c/bot/kodiak/evaluation.py#L1026-L1031 I think I had a similar issue recently. My...