Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/exodusmovement/lerna-package-name-action

This action labels PRs in a lerna monorepo with the package names they affect
https://github.com/exodusmovement/lerna-package-name-action

Last synced: 8 days ago
JSON representation

This action labels PRs in a lerna monorepo with the package names they affect

Awesome Lists containing this project

README

        

[![Checks](https://github.com/ExodusMovement/lerna-package-name-action/actions/workflows/checks.yml/badge.svg)](https://github.com/ExodusMovement/lerna-package-name-action/actions/workflows/checks.yml)

# Lerna package name action

This action labels PRs in a lerna monorepo with the package names they affect

## Example usage

```yaml
name: Label PR

on:
pull_request:
types: [opened, synchronize]

permissions: {}

jobs:
label:
name: Label PR
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
# required for diff
fetch-depth: 0
- name: Label PR
uses: ExodusMovement/lerna-package-name-action
with:
repoToken: '${{ secrets.GITHUB_TOKEN }}'
```