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

https://github.com/aki77/new-gems-action

Add a message in Pull Request with basic information when new gems are added.
https://github.com/aki77/new-gems-action

githubactions

Last synced: 5 months ago
JSON representation

Add a message in Pull Request with basic information when new gems are added.

Awesome Lists containing this project

README

          

# New Gems

Add a message in Pull Request with basic information when new gems are added.

![Demo](https://i.gyazo.com/7b87cc40ca21eb528b067fddb57ecc03.png)

## Usage:

The action works only with pull_request event.

### Inputs

See [action.yml](action.yml)

| Name | Description | Default | Required |
| - | - | - | - |
| `token` | GITHUB_TOKEN | `${{ github.token }}` | no |

## Example

```yaml
name: New gems

on:
pull_request:
paths:
- Gemfile

jobs:
new-gems:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: ruby/setup-ruby@v1
with:
bundler-cache: true
- uses: aki77/new-gems-action@v2
```