From b8ef43387f3bddfa37100fe71ad91f79a59a9253 Mon Sep 17 00:00:00 2001 From: Alicia Sykes Date: Wed, 21 Jul 2021 18:05:16 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=91=B7=20Adds=20GH=20action=20to=20inspec?= =?UTF-8?q?t=20changes=20to=20yarn.lock?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../workflows/dependency-updates-summary.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/dependency-updates-summary.yml diff --git a/.github/workflows/dependency-updates-summary.yml b/.github/workflows/dependency-updates-summary.yml new file mode 100644 index 00000000..145064a5 --- /dev/null +++ b/.github/workflows/dependency-updates-summary.yml @@ -0,0 +1,18 @@ +# Shows changes to yarn.lock in PR comment +# Useful for easily understanding dependency changes +name: Yarn Lock Changes +on: [pull_request] +jobs: + check: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v2 + - name: Yarn Lock Changes + uses: Simek/yarn-lock-changes@main + with: + token: ${{ secrets.GITHUB_TOKEN }} + collapsibleThreshold: '25' + failOnDowngrade: 'false' + path: 'yarn.lock' + updateComment: 'true'