Update footer labels in localization file #415
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 }} |