An open API service indexing awesome lists of open source software.

https://github.com/actionshub/danger-rb

Repository for the actionshub-danger-rb Github Action
https://github.com/actionshub/danger-rb

action ci danger-rb github-action terraform-managed

Last synced: 3 months ago
JSON representation

Repository for the actionshub-danger-rb Github Action

Awesome Lists containing this project

README

        

# danger

[![CI State](https://github.com/actionshub/danger-rb/workflows/release/badge.svg)](https://github.com/actionshub/danger-rb)

A Github Action to run Danger for Ruby

## Usage

```yaml
name: danger

on: [push, pull_request]

jobs:
danger:

runs-on: ubuntu-latest

steps:
- name: Check out code
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Run Danger
uses: actionshub/danger-rb@master
env:
DANGER_GITHUB_API_TOKEN: ${{ secrets.GITHUB_TOKEN }}
```