-
-
Notifications
You must be signed in to change notification settings - Fork 32.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into core/remove-translations
Signed-off-by: Marija Najdova <[email protected]>
- Loading branch information
Showing
11,572 changed files
with
32,423 additions
and
75,404 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
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
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
name: Docs feedback | ||
description: Improve documentation about MUI Core. | ||
labels: ['status: needs triage', 'support: docs-feedback'] | ||
title: '[docs] ' | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Please provide a searchable summary of the issue in the title above ⬆️. | ||
Thanks for contributing by creating an issue! ❤️ | ||
- type: checkboxes | ||
attributes: | ||
label: Duplicates | ||
description: Please [search the history](https://github.com/mui/material-ui/issues) to see if an issue already exists for the same problem. | ||
options: | ||
- label: I have searched the existing issues | ||
required: true | ||
|
||
- type: input | ||
id: page-url | ||
attributes: | ||
label: Related page | ||
description: Which page of the documentation is this about? | ||
placeholder: https://mui.com/material-ui/react-badge/ | ||
validations: | ||
required: true | ||
|
||
- type: dropdown | ||
attributes: | ||
label: Kind of issue | ||
description: What kind of problem are you facing? | ||
options: | ||
- Unclear explanations | ||
- Missing information | ||
- Broken demonstration | ||
- Other | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
attributes: | ||
label: Issue description | ||
description: | | ||
Let us know what went wrong when you were using this documentation and what we could do to improve it. | ||
value: | | ||
I was looking for ... and it appears that ... | ||
- type: textarea | ||
attributes: | ||
label: Context 🔦 | ||
description: What are you trying to accomplish? What brought you to this page? Your context can help us to come up with solutions that benefit the community as a whole. |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
name: CodeQL configuration | ||
|
||
paths-ignore: | ||
- 'packages/mui-icons-material/lib/**' |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,14 +4,16 @@ on: | |
pull_request: | ||
types: [opened, reopened, labeled, unlabeled] | ||
|
||
permissions: {} | ||
|
||
jobs: | ||
test-label-applied: | ||
# Tests that label is added on the PR | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: read | ||
steps: | ||
- uses: mnajdova/[email protected] | ||
- uses: mnajdova/github-action-required-labels@ca0df9249827e43aa4b4a0d25d9fe3e9b19b0705 # v2.1.0 | ||
with: | ||
mode: minimum | ||
count: 1 | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# This workflow is a workaround for ci.yml to bypass the github checks | ||
# | ||
# Ref: https://docs.github.com/en/repositories/configuring-branches-and-merges-in-your-repository/defining-the-mergeability-of-pull-requests/troubleshooting-required-status-checks#handling-skipped-but-required-checks | ||
name: CI | ||
|
||
on: | ||
push: | ||
branches-ignore: | ||
- 'renovate/**' | ||
pull_request: | ||
paths: | ||
- 'docs/**' | ||
- 'examples/**' | ||
|
||
permissions: {} | ||
|
||
jobs: | ||
test-dev: | ||
if: ${{ github.actor != 'l10nbot' }} | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
os: [macos-latest, windows-latest, ubuntu-latest] | ||
steps: | ||
- run: 'echo "No build required"' |
Oops, something went wrong.