Skip to content

Update footer labels in localization file #415

Update footer labels in localization file

Update footer labels in localization file #415

name: Rehydrate lockfile on Dependabot PRs
on:
pull_request:
types: [opened, synchronize]
permissions:
contents: write
pull-requests: write
jobs:
fix-lock:
if: github.actor == 'dependabot[bot]'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.head_ref }}
fetch-depth: 0
- uses: actions/setup-node@v4
with:
# Honor the version pinned in package.json -> packageManager
node-version-file: '.nvmrc'
cache: 'npm'
- name: Show npm version
run: npm --version
- name: Rehydrate workspace links in lockfile
run: |
# Update only the lockfile, but with workspaces awareness
npm install --package-lock-only --workspaces --include-workspace-root
- name: Commit lockfile fix
uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: 'chore: rehydrate workspace links in package-lock for workspaces'
branch: ${{ github.head_ref }}