chore: replace bangs with dots #139
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: Prettify on Merge | |
on: | |
pull_request_target: | |
types: | |
- closed | |
jobs: | |
prettier: | |
if: ${{ github.event.pull_request.merged == true }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
# Ensure the branch being merged is checked out | |
ref: ${{ github.event.pull_request.head.ref }} | |
- name: Prettify code | |
uses: creyD/[email protected] | |
with: | |
prettier_options: --write ./packages/core/**/* ./packages/cli/**/* |