scoresaber-reloadedv3/.gitea/workflows/!-fix-bun-lock-file.yml

29 lines
669 B
YAML
Raw Normal View History

2024-10-09 17:05:51 +00:00
name: Fix bun lock file (Renovate)
2024-10-09 14:30:24 +00:00
on:
2024-10-09 14:33:08 +00:00
workflow_dispatch:
2024-10-09 14:30:24 +00:00
push:
2024-10-09 17:05:51 +00:00
branches-ignore:
- master
2024-10-09 14:30:24 +00:00
paths:
2024-10-09 14:32:00 +00:00
- '**/package.json' # Detect changes in any package.json file in any directory
2024-10-09 14:30:24 +00:00
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install bun
uses: oven-sh/setup-bun@v2
- name: Install dependencies
run: bun install
- name: Commit bun lock file
run: |
git config --global user.email "helper@fascinated.cc"
git config --global user.name "Bun Fixer"
git add bun.lockb
git commit -m "Fix bun lock file"
git push