You're viewing an older version of this GitHub Action. Do you want to see the latest version instead?
GitHub Action
Yarn Lock Changes
v0.3.0
Creates a comment inside Pull Request with the human-readable summary of the changes to the yarn.lock
file.
- name: Yarn Lock Changes
# for now, use `main` before the stable release will be published as `v1`
uses: Simek/yarn-lock-changes@main
with:
path: 'yarn.lock'
token: ${{ secrets.GITHUB_TOKEN }}
Input | Required | Default | Description |
---|---|---|---|
collapsibleThreshold |
No | '25' |
Number of lock changes, which will result in collapsed comment content an addition of summary table. |
path |
No | 'yarn.lock' |
Path to the yarn.lock file in the repository. Default value points to the file at project root. |
token |
Yes | - | GitHub token for the bot, so it can publish a comment in the pull request. |
updateComment |
No | 'true' |
Should the bot update the summary comment. If value is other than default, bot will post new comment on each new commit. |