chore(main): release 6.22.0 (#889) #781
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: Prettier | |
on: | |
push: | |
branches: [main] | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
permissions: | |
contents: read | |
jobs: | |
run: | |
name: Can the code be prettier? 🤔 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
cache: npm | |
node-version: lts/* | |
- run: npm ci --ignore-scripts --only-dev | |
- uses: actions/cache@v4 | |
with: | |
path: node_modules/.cache/prettier/.prettier-cache | |
key: prettier-${{ hashFiles('package-lock.json') }}-${{ hashFiles('.gitignore') }} | |
- run: npx prettier --ignore-path .gitignore --cache --write . | |
- run: git restore .github/workflows CHANGELOG.md runtimes/deno/import_map.json | |
- 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@5e914681df9dc83aa4e4905692ca88beb2f9e91f # v7 | |
with: | |
body: I ran `npx prettier --ignore-path .gitignore --cache --write .` 🧑💻 | |
branch: actions/prettier | |
commit-message: 'chore(prettier): 🤖 ✨' | |
labels: 🤖 bot | |
sign-commits: true | |
title: 'chore(prettier): 🤖 ✨' | |
token: ${{ steps.app-token.outputs.token }} |