Skip to content

chore(deps): bump @sentry/node from 10.31.0 to 10.32.0 (#20730) #9382

chore(deps): bump @sentry/node from 10.31.0 to 10.32.0 (#20730)

chore(deps): bump @sentry/node from 10.31.0 to 10.32.0 (#20730) #9382

Workflow file for this run

name: Format
on:
push:
branches:
- master
jobs:
format:
permissions:
contents: write # for Git to git push
name: Auto format
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
- uses: pnpm/action-setup@41ff72655975bd51cab0327fa583b6e92b6d3061 # v4.2.0
- uses: actions/setup-node@395ad3262231945c25e8478fd5baf05154b1d79f # v6.1.0
with:
node-version: lts/*
cache: 'pnpm'
- run: pnpm i
- run: npm run format
- name: Commit files
run: |
git config --local user.email "41898282+github-actions[bot]@users.noreply.github.com"
git config --local user.name "github-actions[bot]"
git status
git diff-index --quiet HEAD || (git commit -m "style: auto format" -a --no-verify && git push "https://${GITHUB_ACTOR}:${{ secrets.GITHUB_TOKEN }}@github.com/${GITHUB_REPOSITORY}.git" HEAD:master)