Skip to content

Sync Dev Tools

Sync Dev Tools #53

Workflow file for this run

name: Sync Dev Tools
on:
schedule:
- cron: '0 6 * * *'
workflow_dispatch:
jobs:
sync:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
persist-credentials: true
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
- name: Install dependencies
run: npm ci
- name: Sync dev tool versions (apply)
run: npm run sync-devtools:apply
- name: Commit changes
uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: "chore: sync dev tool versions"
branch: "chore/sync-devtools"
file_pattern: "package.json"
- name: Create PR
uses: peter-evans/create-pull-request@v5
with:
token: ${{ secrets.GITHUB_TOKEN }}
title: "chore: sync dev tool versions"
branch: "chore/sync-devtools"
base: "main"
body: 'Automated PR to synchronize dev tooling versions across monorepo.'