Update Transitive Dependencies #128
This file contains 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: Update Transitive Dependencies | |
on: | |
schedule: | |
- cron: '15 11 * * 0' # weekly, on Sunday morning (UTC) | |
workflow_dispatch: | |
jobs: | |
update: | |
name: Update and Create PR | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: pnpm/action-setup@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 18 | |
cache: pnpm | |
- name: remove and re-create lock file | |
run: | | |
rm pnpm-lock.yaml | |
pnpm install | |
- name: Create Pull Request | |
id: cpr | |
uses: peter-evans/create-pull-request@v7 | |
with: | |
token: ${{ secrets.MY_TOKEN }} | |
commit-message: Update Transitive Dependencies | |
title: Update Transitive Dependencies | |
body: | | |
- Dependency updates | |
Auto-generated by [create-pull-request][1] | |
[1]: https://github.com/peter-evans/create-pull-request | |
branch: auto-update-dependencies | |
labels: dependencies | |
- name: Enable Pull Request Automerge | |
if: steps.cpr.outputs.pull-request-operation == 'created' | |
uses: peter-evans/enable-pull-request-automerge@v3 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
pull-request-number: ${{ steps.cpr.outputs.pull-request-number }} | |
merge-method: merge |