-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add a simple README, Bulldozer config and CODE_OF_CONDUCT
- Loading branch information
Showing
3 changed files
with
52 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
# "version" is the configuration version, currently "1". | ||
version: 1 | ||
|
||
# "merge" defines how and when pull requests are merged. If the section is | ||
# missing, bulldozer will consider all pull requests and use default settings. | ||
merge: | ||
# "method" defines the merge method. The available options are "merge", | ||
# "rebase", and "squash". | ||
method: squash | ||
|
||
# "options" defines additional options for the individual merge methods. | ||
options: | ||
# "squash" options are only used when the merge method is "squash" | ||
squash: | ||
# "title" defines how the title of the commit message is created when | ||
# generating a squash commit. The options are "pull_request_title", | ||
# "first_commit_title", and "github_default_title". The default is | ||
# "pull_request_title". | ||
title: pull_request_title | ||
|
||
# "body" defines how the body of the commit message is created when | ||
# generating a squash commit. The options are "pull_request_body", | ||
# "summarize_commits", and "empty_body". The default is "empty_body". | ||
body: pull_request_body | ||
|
||
delete_after_merge: true | ||
whitelist: | ||
labels: ['auto-merge'] | ||
blacklist: | ||
labels: ['do-not-merge'] | ||
|
||
update: | ||
whitelist: | ||
labels: ['auto-update'] | ||
blacklist: | ||
labels: ['do-not-update'] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
This project is governed by the Contributor Covenant version 1.4 | ||
(https://www.contributor-covenant.org/version/1/4/code-of-conduct.html). | ||
|
||
All contributors and participants agree to abide by its terms. | ||
|
||
To report violations, send an email to [email protected]. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<a href="https://cognite.com/"> | ||
<img src="./cognite_logo.png" alt="Cognite logo" title="Cognite" align="right" height="80" /> | ||
</a> | ||
|
||
# Reveal 3D viewer file parsers and debug viewer # | ||
|
||
[![Build Status](https://travis-ci.org/cognitedata/reveal-rs.svg?branch=master)](https://travis-ci.org/cognitedata/reveal-rs) | ||
|
||
This repository contains file loading libraries and a debug viewer for the Cognite Reveal 3D viewer. | ||
|