Skip to content

GitHub Action adding a comment with information about new npm dependencies detected in a pull request

License

Notifications You must be signed in to change notification settings

trumant/github-action-new-dependencies-advisor

 
 

Repository files navigation

New Dependencies Advisor

GitHub Action adding comments to pull requests with package health information about newly added npm dependencies

See it in action 👇

Add a comment in a Pull Request informing of newly added dependencies

Why?

Adding new dependencies in a project should never be a small change, and often it should trigger discussions between maintainers. This action can help you making sure that you are not missing the addition of new package in your npm project's dependencies and devDependencies.

How does it work?

To highlight new packages, this action compares the list of dependencies present in the current pull request branch with the ones present in the base branch.

This check only occurs for each package.json file added or updated with the current pull request. This action is not only looking at the root-level package.json but potentially any existing package.json in the project to be compatible with monorepo projects.

Inputs

token

Specify the built-in secrets available to Actions via the token input. Here's an example for a step in the job:

      - name: "Deps: show dependencies metadata"
        uses: lirantal/github-action-new-dependencies-advisor@v1.1.1
        with:
          token: ${{ secrets.GITHUB_TOKEN }}

Not required.

Usage

This GitHub Action should run every time a commit is pushed to the pull request to check any potential addition or change in one of your package.json.

name: "Deps: show new dependencies metadata"
on:
  - pull_request

jobs:
  deps_new_dependencies_advisor:
    runs-on: ubuntu-latest
    steps:
      - name: "Checkout repo for a local instance"
        uses: actions/checkout@v2
        
      - name: "Deps: show new dependencies metadata"
        uses: lirantal/github-action-new-dependencies-advisor@v1.1.1
        with:
          token: ${{ secrets.GITHUB_TOKEN }}

License

This project is released under the MIT License.

Author

Damien Senger hello@raccoon.studio

Liran Tal liran.tal@gmail.com

About

GitHub Action adding a comment with information about new npm dependencies detected in a pull request

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • TypeScript 98.6%
  • JavaScript 1.4%