Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add lockfile change workflow. #619

Merged
merged 1 commit into from
Sep 21, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Add lockfile change workflow.
  • Loading branch information
kawikabader committed Sep 21, 2023
commit c60c959ffce63a2445cb6ffbd345defc6dfb3fc7
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