Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/exodusmovement/lerna-package-name-action
- Owner: ExodusMovement
- Created: 2023-01-02T07:12:10.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-07-08T07:59:52.000Z (4 months ago)
- Last Synced: 2024-07-08T10:03:12.561Z (4 months ago)
- Language: TypeScript
- Size: 1.3 MB
- Stars: 0
- Watchers: 11
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Codeowners: .github/CODEOWNERS
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 PRon:
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 }}'
```