Skip to content

ProboCI/probo-docs

master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
 
 
 
 
 
 
 
 
 
 
css
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Build Status

Probo documentation

The docs live at https://docs.probo.ci.

Contributing

Want to add to the docs? Have a fancy .probo.yaml file you want to show off? See something outdated that we missed? Contributing is as simple as opening a pull request with some changes.

Contribute documentation

The docs are written in markdown format and live in the docs directory. To contribute:

  1. Submit your changes in a pull request.
  2. Add the needs review label.

That's it! We'll take care of wiring any new pages into the menu.

Need a markdown primer? Check out Adam Pritchard's Markdown Cheatsheet.

To use syntax highlighting with numbers use this format
{% highlight ruby linenos %}
def foo
  puts 'foo'
end
{% endhighlight %}
{% highlight css linenos %}
body {
  background: red;
}
{% endhighlight %}
To use syntax highlighting without numbers use this format:
{% highlight yaml %}
var cli = new ArgumentParser({
  prog:     'js-yaml',
  version:  require('../package.json').version,
  addHelp:  true
});
{% endhighlight %}

Contribute your .probo.yaml configuration

You can share your .probo.yaml in just a few steps:

  1. Create a markdown file in the _examples directory and paste in the following template.
---
title:
author:
github:
---

{% highlight yaml %}

 Your yaml goes here!

{% endhighlight %}
  1. Enter a title for your example. You can optionally add you or your organization's name as you would like it displayed and your GitHub username so we can link to your profile.
  2. Paste the contents of your .probo.yaml file between the highlight yaml tags.
  3. Submit a pull request and add the needs review label.

Thank you for your contribution!