Skip to content
You're viewing an older version of this GitHub Action. Do you want to see the latest version instead?
droplet

GitHub Action

ClearlyNoticed Action

1.0.0

ClearlyNoticed Action

droplet

ClearlyNoticed Action

Maintain a NOTICE file based on your package-lock.json

Installation

Copy and paste the following snippet into your .yml file.

              

- name: ClearlyNoticed Action

uses: dabutvin/[email protected]

Learn more about this action in dabutvin/chive-action

Choose a version

NOTICE file generator (chvive-action)

Create a NOTICE attribution file based on your package-lock.json as a github action!

add ./github/main.workflow to your repo

workflow "NOTICE file generator" {
  on = "push"
  resolves = ["NOTICE file generator"]
}

action "NOTICE file generator" {
  uses = "dabutvin/chive-action@master"
  secrets = ["GITHUB_TOKEN"]
}

with custom file name

action "NOTICE file generator" {
  uses = "dabutvin/chive-action@master"
  secrets = ["GITHUB_TOKEN"]
  args = "--filename=MyNotices.md"
}

include devDependencies in notices

action "NOTICE file generator" {
  uses = "dabutvin/chive-action@master"
  secrets = ["GITHUB_TOKEN"]
  args = "--includeDev=true"
}