Skip to content

chore(deps): update react monorepo (#1786) #2175

chore(deps): update react monorepo (#1786)

chore(deps): update react monorepo (#1786) #2175

Workflow file for this run

name: Fix linting issues
on:
push:
branches: [main]
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
permissions:
contents: read # for checkout
jobs:
run:
name: Are there issues that linters can fix? πŸ€”
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
with:
cache: pnpm
node-version: lts/*
- run: pnpm install --ignore-scripts
- run: git restore pnpm-lock.yaml
- run: pnpm build && pnpm lint:fix
- uses: actions/create-github-app-token@v1
id: generate-token
with:
app-id: ${{ secrets.ECOSPARK_APP_ID }}
private-key: ${{ secrets.ECOSPARK_APP_PRIVATE_KEY }}
- uses: peter-evans/create-pull-request@8867c4aba1b742c39f8d0ba35429c2dfa4b6cb20 # v7
with:
body: I ran `pnpm lint:fix` πŸ§‘β€πŸ’»
branch: actions/lint-fix
commit-message: 'chore(lint): --fix πŸ€– ✨'
labels: πŸ€– bot
sign-commits: true
title: 'chore(lint): --fix πŸ€– ✨'
token: ${{ steps.generate-token.outputs.token }}