All Projects β†’ bluzi β†’ Travis Buddy

bluzi / Travis Buddy

Licence: mit
πŸš€ Seamless integration between TravisCI and GitHub

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Travis Buddy

Ultima
An open source, Infrastructure-as-Code cloud platform with built-in CI and local development environment.
Stars: ✭ 18 (-93.13%)
Mutual labels:  service, cloud, ci
Hubcommander
A Slack bot for GitHub organization management -- and other things too
Stars: ✭ 1,149 (+338.55%)
Mutual labels:  bot, travis-ci
Repairnator
Software development bot that automatically repairs build failures on continuous integration. Join the bot revolution! πŸŒŸπŸ€–πŸŒŸπŸ’ž
Stars: ✭ 340 (+29.77%)
Mutual labels:  bot, ci
Fastocloud
Self-hosted IPTV/NVR/CCTV/Video service (Community version)
Stars: ✭ 464 (+77.1%)
Mutual labels:  service, cloud
Pupernetes
Spin up a full fledged Kubernetes environment designed for local development & CI
Stars: ✭ 199 (-24.05%)
Mutual labels:  ci, travis-ci
Nagios Plugins
450+ AWS, Hadoop, Cloud, Kafka, Docker, Elasticsearch, RabbitMQ, Redis, HBase, Solr, Cassandra, ZooKeeper, HDFS, Yarn, Hive, Presto, Drill, Impala, Consul, Spark, Jenkins, Travis CI, Git, MySQL, Linux, DNS, Whois, SSL Certs, Yum Security Updates, Kubernetes, Cloudera etc...
Stars: ✭ 1,000 (+281.68%)
Mutual labels:  cloud, travis-ci
Ecominit
eComInit is a free init system and service manager designed to scale from lightweight desktops to web-scale cloud deployments. It aims to offer feature-parity with systemd but with a modular, portable architecture compliant with software engineering best-practice.
Stars: ✭ 352 (+34.35%)
Mutual labels:  service, cloud
Trytravis
Send local git changes to Travis CI without commits or pushes.
Stars: ✭ 131 (-50%)
Mutual labels:  ci, travis-ci
ci-minikube
run minikube on ci
Stars: ✭ 28 (-89.31%)
Mutual labels:  travis-ci, ci
developer-ci-benefits
Talk docsβ€”includes CI (Continuous Integration) benefits, description, and setup tips πŸ’‘πŸ’ͺ
Stars: ✭ 29 (-88.93%)
Mutual labels:  travis-ci, ci
ci playground
Playground for Cloud CI development for C++
Stars: ✭ 23 (-91.22%)
Mutual labels:  travis-ci, ci
Nevergreen
🐀 A build monitor with attitude
Stars: ✭ 170 (-35.11%)
Mutual labels:  ci, travis-ci
Ci Detector
Detect continuous integration environment and get information of current build
Stars: ✭ 138 (-47.33%)
Mutual labels:  ci, travis-ci
Lastbackend
System for containerized apps management. From build to scaling.
Stars: ✭ 1,536 (+486.26%)
Mutual labels:  cloud, ci
Alpine Chroot Install
Install Alpine Linux in chroot with a breeze. Build ARM on Travis CI or any other x86_64 CI.
Stars: ✭ 133 (-49.24%)
Mutual labels:  ci, travis-ci
Telegram Clonebot
Simple Bot to clone Google Drive Files (or Folders) to your Team Drive[or Normal Drive]. P.S This is not a Mirror Bot. Enjoy ✌🏻
Stars: ✭ 114 (-56.49%)
Mutual labels:  bot, cloud
Idea Cli Inspector
A little command-line tool to integrate the awesome IntelliJ IDEA code inspections in your continuous integration (CI) process using Jenkins, Bamboo, et. al.
Stars: ✭ 120 (-54.2%)
Mutual labels:  ci, travis-ci
Monorepo
Showcase of how to manage building projects inside monorepo with Gradle as build tool and CircleCI, Bitbucket Pipelines, Travis CI or GitHub Actions as CI tool.
Stars: ✭ 129 (-50.76%)
Mutual labels:  ci, travis-ci
build-status
Emacs minor mode that monitors and shows a buffer's build status in the mode line.
Stars: ✭ 26 (-90.08%)
Mutual labels:  travis-ci, ci
docker-coala-base
coala base docker image
Stars: ✭ 20 (-92.37%)
Mutual labels:  travis-ci, ci

TravisBuddy Build Status Heroku

TravisBuddy is a cloud service that creates comments in failed pull requests and tells the author what went wrong and what they can do to fix it.

Why should I use it?

  • It takes 2 minutes to integrate TravisBuddy with your GitHub repository, assuming it's already integrated with TravisCI
  • It will save precious time to you and to your contributors, as you won't have to explain what went wrong, and they won't have to go through the whole build log in TravisCI.
  • It's free, open source, and awesome.

TravisBuddy example comment

Repositories Using TravisBuddy

TravisBuddy is already being trusted by few repositories on GitHub. It automatically stars every project using it, so you can easily see who's using it.

Getting Started

Public Repositories

If you're already using Travis CI, modify your .travis.yml and add the following lines:

notifications:
    webhooks: https://www.travisbuddy.com/

If not, enable Travis CI in your repository by following the tutorial in their website according to the tech you're using, and then add the code above to .travis.yml.

Here's how your .travis.yml should look like if you're using node_js:

language: node_js
node_js:
    - "8"
notifications:
    webhooks: https://www.travisbuddy.com/

Configuration

You can configure TravisBuddy by adding a travisBuddy node to your travis.yml i.e.:

language: node_js
node_js:
    - "8"
notifications:
    webhooks: https://www.travisbuddy.com/
travisBuddy:
    regex: "(\d+ failing)"

You may use the following configuration keys:

Key Description Values
regex Tells TravisBuddy to take only parts of the log. The regex is executed on each test script separately, and TravisBuddy will only show the first result catched using parentheses Any valid regular expression
regexOptions Use along with regex to apply regular expression options Any valid regular expression option, i.e. g
insertMode Tells TravisBuddy to comment once and keep editing that one comment instead of appending new comment for every build (default) append or update
successBuildLog Tells TravisBuddy to add the build log for successfull builds. (default) false or true

Custom Template

If TravisBuddy finds a file name travis-buddy-failure-template.md in the root of the branch it's commenting on, it'll be used as a template for the comments.

The content of the file must be a valid mustache template. If you don't know the syntax, visit the mustache documentation or refer to this sample template.

Disable success message

If you only want TravisBuddy to create comments when the tests fail, add on_success: never to the notifications node, like this:

notifications:
    webhooks: https://www.travisbuddy.com/
    on_success: never

Update comments mode

If you want TravisBuddy to only create one comment, add ?insertMode=update to the webhook URL. TravisBuddy will create one comment and when there is a new cause for test failure, it will update that one with the new information.

notifications:
    webhooks: https://www.travisbuddy.com/?insertMode=update

Private Repositories

TravisBuddy is not yet supported on private repositories. However, we're working on it, so stay tuned.

What if I still can't get it to work?

Feel free to contact us using the website, or leave an issue in our GitHub repository.

Run Locally

It's easy to run a local instance of TravisBuddy - just clone the repository, run npm i and use:

  • npm test for tests
  • npm start to run

Test Repositories

The plan is to create a repository for each resolver (test library) So far, we have:

Deploy to Heroku

Deploy

Contribution

Feel free to create issues or create pull requests. Follow the "Run locally" section of this documentation to learn how to debug the project.

Note that there are open issues with detailed instruction on how to resolve them, so if you want to help - just pick one labeled good first issue.

License

This project is licensed under the MIT License.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].