GitXplorerGitXplorer
S

yarn-lock-changes

public
134 stars
22 forks
6 issues

Commits

List of commits on branch main.
Verified
2fc6f6c49bee5bbe13f8c3b66b34aabcaa2d7378

speed up parser a bit, update dependencies, rebuild (#79)

SSimek committed 2 months ago
Verified
09576a89f82d0af506f812c147742e75eceefdda

Bump cross-spawn from 7.0.3 to 7.0.6 (#78)

ddependabot[bot] committed 2 months ago
Verified
3632125157343d9002f3b695abbee8c9876683d2

update dependencies, test against Node 22, rebuild files (#77)

SSimek committed 3 months ago
Verified
5b249bcbb9794145fefa43a2a8330b884697e40f

update dependencies, tweak lint setup, rebuild files (#75)

SSimek committed 8 months ago
Verified
23b5437388098454b9d9c1574b50066b3338dbf1

README note tweak

SSimek committed a year ago
Unverified
991be6ca9cf2b7a1238925c14a61cad62744a79a

prepare for the releases

SSimek committed a year ago

README

The README file for this repository.

Yarn Lock Changes

Creates a comment inside Pull Request with the human-readable summary of the changes to the yarn.lock file. Works in public and private repositories, offers a degree of customization.

Usage

⚡️ Workflow Example

Example below shows the minimal workflow setup, required action input (token) and all the optional inputs (set to theirs default values). If you are happy with the output generated by the action, it's safe to remove all optional inputs.

name: Yarn Lock Changes
on: [pull_request]

jobs:
  yarn_lock_changes:
    runs-on: ubuntu-latest
    # Permission overwrite is required for Dependabot PRs, see "Common issues" section below.
    permissions:
      pull-requests: write
    steps:
      - name: Checkout
        uses: actions/checkout@v4
      - name: Yarn Lock Changes
        # Please use `main` as version before the stable release will be published as `v1`.
        uses: Simek/yarn-lock-changes@main
        with:
          token: ${{ secrets.GITHUB_TOKEN }}
          # Optional inputs, can be deleted safely if you are happy with default values.
          collapsibleThreshold: 25
          failOnDowngrade: false
          path: yarn.lock
          updateComment: true
          groupByType: false

[!note] For Node <18 support, you can change the action version tag in your workflow to v0.11, instead of using main:

- name: Yarn Lock Changes
  uses: Simek/yarn-lock-changes@v0.11

🔌 Inputs

Input Required Default Description
token Yes Repository GITHUB_TOKEN which allows action to make calls to the GitHub API (Octokit).
collapsibleThreshold No 25 Number of lock changes, which will result in collapsed comment content, and an addition of changes summary table.
failOnDowngrade No false WFail the action when a dependency downgrade is detected. Comment will still be posted.
path No yarn.lock Path to the yarn.lock file in the repository. Default value points to the file at project root.
updateComment No true Update the comment on each new commit. If value is set to false, bot will post a new comment on each change.
groupByType No false Group the dependencies in the comment table by the change type.

📸 Preview

Basic comment appearance

basic

Comment appearance when collapsibleThreshold has been reached

summary

📋 Common issues

The action fails on the Dependabot pull requests

Due to the security reasons from March 1st, 2021 workflow runs that are triggered by Dependabot have permissions reduced by default:

To ensure that sufficient permissions for this action are always granted, you will need to add permissions entry to the job which runs yarn-lock-changes:

jobs:
  ...:
    runs-on: ...
    #####
    permissions:
      pull-requests: write
    #####
    steps:
      ...

The action fails in a private repository

After one of the GitHub Actions security breaches GitHub decided to trim down the default permission set for actions running in private repositories.

If you are trying to run action with default setup in the private repository, you will see the following error during checkout step:

remote: Repository not found.
Error: fatal: repository 'https://github.com/<your_user>/<your_repo>/' not found
Error: The process '/usr/bin/git' failed with exit code 128

This means that you will need to add the following permissions entry to the job which runs checkout:

jobs:
  ...:
    runs-on: ...
    #####
    permissions:
      contents: read
    #####
    steps:
      ...

If you would like to learn a little bit more about this problem, you can visit this issue in the GitHub Checkout Action repository:

🔍️ Debugging

To run action in the debug mode you need to add the ACTIONS_STEP_DEBUG repository secret and set it to true, as stated in the GitHub documentation.

Then additional information which might be useful for the users when debugging the issues will be available in the action output, prefixed by ##[debug].