Skip to content

Fix regex to make sure _template.json doesn't appear in members list #7

Fix regex to make sure _template.json doesn't appear in members list

Fix regex to make sure _template.json doesn't appear in members list #7

Workflow file for this run

name: Continuous Integration
# This action works only on pushes to the main branch
on:
push:
branches:
- main
# for testing
- prettier-github-action-3
jobs:
prettier:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
# Make sure the actual branch is checked out when running on pull requests
ref: ${{ github.head_ref }}
- name: Prettify code
uses: creyD/prettier_action@v4.3
with:
# This part is also where you can pass other options, for example:
prettier_options: "--write ."
commit_message: "Format code with prettier (https://prettier.io/)"
commit_description: "This commit was automatically generated by a GitHub Action (see .github/workflows/format.yml)."