Use correct show_tax value (#753) #1
This file contains hidden or 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 Fix | |
| on: | |
| push: | |
| workflow_run: | |
| workflows: ["Duster Fix"] | |
| types: | |
| - completed | |
| jobs: | |
| prettier: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: write | |
| steps: | |
| - uses: actions/checkout@v3 | |
| with: | |
| ref: ${{ github.head_ref }} | |
| token: ${{ secrets.RAPIDEZ_ACTIONS_ACCOUNT_PAT }} | |
| - name: Run install | |
| uses: borales/actions-yarn@v4 | |
| with: | |
| cmd: install | |
| - name: "Prettier Fix" | |
| uses: creyD/[email protected] | |
| with: | |
| prettier_options: --write . | |
| commit_message: "Apply fixes from Prettier" | |
| prettier_plugins: "prettier-plugin-tailwindcss @shufo/prettier-plugin-blade" |