diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS new file mode 100644 index 000000000..7b97e38d2 --- /dev/null +++ b/.github/CODEOWNERS @@ -0,0 +1,4 @@ +# Learn how to add code owners here: +# https://help.github.com/en/articles/about-code-owners + +* @navin-moorthy diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index df131c954..d7f867c63 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -6,7 +6,7 @@ on: - main jobs: - build: + test: runs-on: ubuntu-latest steps: diff --git a/.kodiak.toml b/.kodiak.toml new file mode 100644 index 000000000..8989060a5 --- /dev/null +++ b/.kodiak.toml @@ -0,0 +1,18 @@ +# .kodiak.toml +version = 1 + +[merge] +automerge_label = "ready 🎉" +require_automerge_label = false +method = "squash" +delete_branch_on_merge = true +optimistic_updates = true +prioritize_ready_to_merge = true +notify_on_conflict = false + +[merge.message] +title = "pull_request_title" +body = "github_default" +include_pr_number = true +body_type = "markdown" +strip_html_comments = true