Skip to content

Update min-age-3days.json #430

Update min-age-3days.json

Update min-age-3days.json #430

Workflow file for this run

---
name: Prettier
on:
push:
branches: [main]
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref_name }}
cancel-in-progress: true
permissions:
contents: read
jobs:
run:
name: Can the code be prettier? 🤔
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/setup-node@v6
with:
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: npm run format
- run: git restore .github/workflows
- uses: actions/create-github-app-token@v2
id: app-token
if: ${{ env.HAVE_ECOSPARK_APP_ID == 'true' }}
env:
HAVE_ECOSPARK_APP_ID: ${{ secrets.ECOSPARK_APP_ID != '' }}
with:
app-id: ${{ secrets.ECOSPARK_APP_ID }}
private-key: ${{ secrets.ECOSPARK_APP_PRIVATE_KEY }}
- uses: peter-evans/create-pull-request@271a8d0340265f705b14b6d32b9829c1cb33d45e # v7
if: ${{ steps.app-token.outputs.token != '' }}
with:
body: I ran `npm run format` 🧑‍💻
branch: actions/prettier-if-needed
commit-message: "chore(prettier): 🤖 ✨"
labels: 🤖 bot
sign-commits: true
title: "chore(prettier): fix unformatted files"
token: ${{ steps.app-token.outputs.token }}