forked from gazebosim/gz-transport
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[master] Workflow updates (gazebosim#134)
* [master] Workflow updates Signed-off-by: Louise Poubel <[email protected]>
- Loading branch information
Showing
6 changed files
with
58 additions
and
6 deletions.
There are no files selected for viewing
Validating CODEOWNERS rules …
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,5 @@ | ||
# More info: | ||
# https://help.github.com/en/github/creating-cloning-and-archiving-repositories/about-code-owners | ||
|
||
* @caguero | ||
tutorials/* @maryaB-osr |
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,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: 'pkg-config libprotobuf-dev protobuf-compiler libprotoc-dev libzmq3-dev uuid-dev libsqlite3-dev libignition-cmake2-dev libignition-math6-dev libignition-msgs5-dev libignition-tools-dev' | ||
codecov-token: ${{ secrets.CODECOV_TOKEN }} |
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,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 }} |
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,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 | ||
|
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
This file was deleted.
Oops, something went wrong.