Skip to content

Commit

Permalink
Merge pull request #16 from ignitionrobotics/workflow_updates_master
Browse files Browse the repository at this point in the history
Workflow updates
  • Loading branch information
chapulina authored May 7, 2020
2 parents 100fffc + bd09f2c commit d57a19e
Show file tree
Hide file tree
Showing 4 changed files with 63 additions and 4 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/ci-bionic.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Ubuntu Bionic CI

on: [push, pull_request]

jobs:
bionic-ci:
runs-on: ubuntu-latest
name: Ubuntu Bionic CI
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Bionic CI
id: ci
uses: ignition-tooling/ubuntu-bionic-ci-action@master
with:
apt-dependencies: 'libignition-cmake2-dev'
codecov-token: ${{ secrets.CODECOV_TOKEN }}
13 changes: 13 additions & 0 deletions .github/workflows/pr-collection-labeler.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name: PR Collection Labeler

on: pull_request

jobs:
pr_collection_labeler:
runs-on: ubuntu-latest
steps:
- name: Add collection labels
if: github.event.action == 'opened'
uses: ignition-tooling/pr-collection-labeler@v1
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
19 changes: 19 additions & 0 deletions .github/workflows/triage.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
on:
issues:
types: [opened]
pull_request:
types: [opened]
name: Ticket opened
jobs:
assign:
name: Add ticket to inbox
runs-on: ubuntu-latest
steps:
- name: Add ticket to inbox
uses: technote-space/create-project-card-action@v1
with:
PROJECT: Core development
COLUMN: Inbox
GITHUB_TOKEN: ${{ secrets.TRIAGE_TOKEN }}
CHECK_ORG_PROJECT: true

18 changes: 14 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,26 @@
# Ignition Plugin

**Maintainer:** grey [AT] openrobotics [DOT] org

[![GitHub open issues](https://img.shields.io/github/issues-raw/ignitionrobotics/ign-plugin.svg)](https://github.com/ignitionrobotics/ign-plugin/issues)
[![GitHub open pull requests](https://img.shields.io/github/issues-pr-raw/ignitionrobotics/ign-plugin.svg)](https://github.com/ignitionrobotics/ign-plugin/pulls)
[![Discourse topics](https://img.shields.io/discourse/https/community.gazebosim.org/topics.svg)](https://community.gazebosim.org)
[![Hex.pm](https://img.shields.io/hexpm/l/plug.svg)](https://www.apache.org/licenses/LICENSE-2.0)

Build | Status
-- | --
Test coverage | [![codecov](https://codecov.io/gh/ignitionrobotics/ign-plugin/branch/master/graph/badge.svg)](https://codecov.io/gh/ignitionrobotics/ign-plugin/branch/master)
Ubuntu Bionic | [![Build Status](https://build.osrfoundation.org/job/ignition_plugin-ci-master-bionic-amd64/badge/icon)](https://build.osrfoundation.org/job/ignition_plugin-ci-master-bionic-amd64/)
Homebrew | [![Build Status](https://build.osrfoundation.org/job/ignition_plugin-ci-master-bionic-amd64/badge/icon)](https://build.osrfoundation.org/job/ignition_plugin-ci-master-bionic-amd64/)
Windows 7 | [![Build Status](https://build.osrfoundation.org/job/ignition_plugin-ci-master-windows7-amd64/badge/icon)](https://build.osrfoundation.org/job/ignition_plugin-ci-master-windows7-amd64/)

** Library for registering plugin libraries and dynamically loading them at runtime.**

Ignition Plugin is a component in the ignition framework, a set
of libraries designed to rapidly develop robot applications.

[http://ignitionrobotics.org](http://ignitionrobotics.org)

Test coverage:

[![codecov](https://codecov.io/bb/ignitionrobotics/ign-plugin/branch/default/graph/badge.svg)](https://codecov.io/bb/ignitionrobotics/ign-plugin)

## Installation

Standard installation can be performed in UNIX systems using the following
Expand Down

0 comments on commit d57a19e

Please sign in to comment.