Skip to content

chore(deps-dev): bump braces from 3.0.2 to 3.0.3 (#29) #16

chore(deps-dev): bump braces from 3.0.2 to 3.0.3 (#29)

chore(deps-dev): bump braces from 3.0.2 to 3.0.3 (#29) #16

Workflow file for this run

name: 👔 Format
on:
push:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
format:
if: github.repository == 'remix-run/release-comment-action'
runs-on: ubuntu-latest
steps:
- name: ⬇️ Checkout repo
uses: actions/checkout@v4
- name: ⎔ Setup node
uses: actions/setup-node@v4
with:
node-version: 20
- name: 🟧 Setup pnpm
uses: pnpm/action-setup@v4
with:
version: 8
run_install: |
- recursive: true
args: [--frozen-lockfile, --strict-peer-dependencies]
- name: 👔 Format
run: pnpm run format
- name: 💪 Commit
run: |
git config --local user.email "github-actions[bot]@users.noreply.github.com"
git config --local user.name "github-actions[bot]"
git add .
if [ -z "$(git status --porcelain)" ]; then
echo "💿 no formatting changed"
exit 0
fi
git commit -m "chore: format"
git push
echo "💿 pushed formatting changes https://github.com/$GITHUB_REPOSITORY/commit/$(git rev-parse HEAD)"