chore(workflow): put back main
#3
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: π Format - Prettier | |
on: | |
push: | |
branches: | |
- main | |
permissions: write-all | |
jobs: | |
format-codebase: | |
name: π Format Codebase with Prettier | |
runs-on: ubuntu-latest | |
steps: | |
- name: π Checkout Repository | |
uses: actions/checkout@v4 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
- name: π Run Prettier | |
uses: creyD/[email protected] | |
with: | |
prettier_options: --write **/*.{json,md} | |
commit_message: "chore(codebase): format with prettier" |