Skip to content

Buddy Bot

Buddy Bot #27

Workflow file for this run

name: Buddy Bot
on:
schedule:
- cron: '0 4 * * *'
workflow_dispatch:
permissions:
contents: write
issues: write
pull-requests: write
concurrency:
group: buddy-bot
cancel-in-progress: false
jobs:
dependencies:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
with:
fetch-depth: 0
- uses: oven-sh/setup-bun@v2
with:
bun-version-file: package.json
- run: bun install --frozen-lockfile
- name: Update dependencies
run: bunx buddy-bot update --strategy patch --verbose
env:
GITHUB_TOKEN: ${{ secrets.BUDDY_BOT_TOKEN || secrets.GITHUB_TOKEN }}
- name: Update dependency dashboard
run: bunx buddy-bot dashboard --verbose
env:
GITHUB_TOKEN: ${{ secrets.BUDDY_BOT_TOKEN || secrets.GITHUB_TOKEN }}