Skip to content

chore(deps): update dependency astro to ^4.15.2 (#1093) #949

chore(deps): update dependency astro to ^4.15.2 (#1093)

chore(deps): update dependency astro to ^4.15.2 (#1093) #949

---
name: Auto format
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: Can the code be formatted? πŸ€”
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v3
- uses: actions/setup-node@v4
with:
cache: pnpm
node-version: lts/*
- run: corepack enable && pnpm --version
- run: pnpm install --ignore-scripts
- run: pnpm format
- run: git restore .github/workflows CHANGELOG.md
- uses: actions/create-github-app-token@v1
id: app-token
with:
app-id: ${{ secrets.ECOSPARK_APP_ID }}
private-key: ${{ secrets.ECOSPARK_APP_PRIVATE_KEY }}
- uses: peter-evans/create-pull-request@c5a7806660adbe173f04e3e038b0ccdcd758773c # v6
with:
author: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
body: I ran `pnpm format` πŸ§‘β€πŸ’»
branch: actions/format
commit-message: "chore(format): πŸ€– ✨"
labels: πŸ€– bot
title: "chore(format): πŸ€– ✨"
token: ${{ steps.app-token.outputs.token }}