Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[core] Add yml support to prettier #33980

Merged
merged 1 commit into from Sep 26, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion .circleci/config.yml
Expand Up @@ -74,7 +74,7 @@ commands:
command: |
node scripts/use-react-version
# log a patch for maintainers who want to check out this change
git --no-pager diff HEAD
git --no-pager diff HEAD
- restore_cache:
name: Restore yarn cache
keys:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/check-if-pr-has-label.yml
Expand Up @@ -6,11 +6,11 @@ on:

jobs:
test-label-applied:
# Tests that label is added on the PR
# Tests that label is added on the PR
runs-on: ubuntu-latest
steps:
- uses: mnajdova/github-action-required-labels@v2.0
with:
mode: minimum
count: 1
labels: ""
labels: ''
2 changes: 1 addition & 1 deletion .github/workflows/no-response.yml
Expand Up @@ -23,4 +23,4 @@ jobs:
# Comment to post when closing an Issue for lack of response. Set to `false` to disable
closeComment: >
Since the issue is missing key information and has been inactive for 7 days, it has been automatically closed.
If you wish to see the issue reopened, please provide the missing information.
If you wish to see the issue reopened, please provide the missing information.
2 changes: 1 addition & 1 deletion scripts/prettier.js
Expand Up @@ -48,7 +48,7 @@ function runPrettier(options) {
});

const files = glob
.sync('**/*.{js,jsx,md,tsx,ts,json,html,css,prisma}', {
.sync('**/*.{js,jsx,md,tsx,ts,json,html,css,prisma,yml}', {
cwd: workspaceRoot,
gitignore: true,
ignore: [
Expand Down