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.
- Host: GitHub
- URL: https://github.com/aki77/new-gems-action
- Owner: aki77
- License: mit
- Created: 2020-05-09T08:31:49.000Z (about 6 years ago)
- Default Branch: main
- Last Pushed: 2026-01-02T03:02:51.000Z (6 months ago)
- Last Synced: 2026-01-07T19:39:12.880Z (5 months ago)
- Topics: githubactions
- Language: TypeScript
- Homepage:
- Size: 2.31 MB
- Stars: 4
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# New Gems
Add a message in Pull Request with basic information when new gems are added.

## 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
```