Skip to content

Commit

Permalink
ci: create update-lockfile.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
adeherysh authored Apr 13, 2024
1 parent af4fc21 commit 5d4c7ae
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/update-lockfile.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Update lockfile
on: workflow_dispatch

jobs:
update-lockfile:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Setup bun
uses: oven-sh/setup-bun@v1
with:
bun-version: latest

- name: Update lockfile
run: bun install

- name: Create Pull Request
uses: peter-evans/create-pull-request@v6
with:
commit-message: 'build(main): update lockfile'
title: 'build(main): update lockfile'
body: |
- bun.lockb updates
Auto-generated by [create-pull-request][1]

[1]: https://github.com/peter-evans/create-pull-request
branch: build/update-lockfile

0 comments on commit 5d4c7ae

Please sign in to comment.