chore(deps): update dependency ts-pattern to v5.6.0 #37
Workflow file for this run
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 after Renovate | |
on: | |
pull_request: | |
types: | |
- opened | |
- synchronize | |
jobs: | |
update-deno-lockfile: | |
runs-on: ubuntu-latest | |
if: github.actor == 'renovate[bot]' && contains(github.event.pull_request.changed_files, 'cdk8s/deno.json') | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.event.pull_request.head.ref }} | |
fetch-depth: 2 | |
- name: Set up Deno | |
uses: denoland/setup-deno@v1 | |
with: | |
deno-version: v2.x | |
- name: Update Deno lockfile | |
run: cd cdk8s && deno cache --lock=deno.lock src/app.ts | |
# - name: Update imports | |
# run: cd cdk8s && ./update-imports.ts | |
- name: Commit and push changes | |
run: | | |
git config --global user.name 'renovate-update' | |
git config --global user.email '[email protected]' | |
git add . | |
git commit --amend --no-edit | |
git push --force |