Skip to content

Commit

Permalink
Add lockfile change workflow. (#619)
Browse files Browse the repository at this point in the history
  • Loading branch information
kbader-godaddy authored Sep 21, 2023
1 parent d2fe46b commit eb0dc81
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/lockfile-changes.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: NPM Lockfile Changes

on: [pull_request]

jobs:
lockfile_changes:
runs-on: ubuntu-latest
# Permission overwrite is required for Dependabot PRs
permissions:
pull-requests: write
steps:
- name: Checkout Repository
uses: actions/checkout@v3

- name: NPM Lockfile Changes
uses: codepunkt/[email protected]
with:
token: ${{ secrets.GITHUB_TOKEN }}
# Optional inputs, can be deleted safely if you are happy with default values.
collapsibleThreshold: 25
failOnDowngrade: false
path: package-lock.json
updateComment: true

0 comments on commit eb0dc81

Please sign in to comment.