Skip to content

Instantly share code, notes, and snippets.

View ethomson's full-sized avatar
:shipit:

Edward Thomson ethomson

:shipit:
View GitHub Profile
name: CI
on: [push]
jobs:
setup:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- run: ./setup_test_infrastructure.sh
name: CI
on: [push]
jobs:
setup:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- run: ./setup_test_infrastructure.sh
name: CI
on: [push]
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v1
name: 'Checkout'
name: CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Build
name: Redis Service Example
on: push
jobs:
talk-to-redis:
runs-on: ubuntu-latest
services:
redis:
name: Comment
on:
issues:
types: [opened]
jobs:
comment:
runs-on: ubuntu-latest
steps:
name: Node CI
on:
pull_request:
branches:
jobs:
build:
runs-on: ubuntu-latest
name: Publish Release
on:
release:
types:
- created
jobs:
publish:
runs-on: ubuntu-latest
name: Self Hosted
on: [push]
jobs:
comment:
runs-on: self-hosted
steps:
- run: uname -a
name: Comment
on: issue_comment
jobs:
comment:
runs-on: ubuntu-latest
steps:
- run: |
echo "The comment was: $(jq --raw-output .comment.body '${{ github.event_path }}')"