Skip to content

Commit f0f33c6

Browse files
[core] Rename the GitHub org (mui#30944)
1 parent 9c30458 commit f0f33c6

File tree

249 files changed

+744
-742
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

249 files changed

+744
-742
lines changed

Diff for: .circleci/config.yml

+10-4
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ commands:
109109
key: v8-yarn-{{ checksum "yarn.lock" }}
110110
paths:
111111
# Keep path in sync with "Set yarn cache folder"
112-
# Can't use environment variables for `save_cache` paths (tested in https://app.circleci.com/pipelines/github/mui-org/material-ui/37813/workflows/5b1e207f-ac8b-44e7-9ba4-d0f9a01f5c55/jobs/223370)
112+
# Can't use environment variables for `save_cache` paths (tested in https://app.circleci.com/pipelines/github/mui/material-ui/37813/workflows/5b1e207f-ac8b-44e7-9ba4-d0f9a01f5c55/jobs/223370)
113113
- /tmp/yarn-cache
114114
- when:
115115
condition: << parameters.browsers >>
@@ -119,7 +119,7 @@ commands:
119119
key: v5-playwright-{{ arch }}-{{ checksum "/tmp/playwright_info.json" }}
120120
paths:
121121
# Keep path in sync with "PLAYWRIGHT_BROWSERS_PATH"
122-
# Can't use environment variables for `save_cache` paths (tested in https://app.circleci.com/pipelines/github/mui-org/material-ui/37813/workflows/5b1e207f-ac8b-44e7-9ba4-d0f9a01f5c55/jobs/223370)
122+
# Can't use environment variables for `save_cache` paths (tested in https://app.circleci.com/pipelines/github/mui/material-ui/37813/workflows/5b1e207f-ac8b-44e7-9ba4-d0f9a01f5c55/jobs/223370)
123123
- /tmp/pw-browsers
124124

125125
jobs:
@@ -187,7 +187,10 @@ jobs:
187187
fi
188188
- run:
189189
name: Coverage
190-
command: bash <(curl -s https://codecov.io/bash) -Z -F "$REACT_DIST_TAG-jsdom"
190+
command: |
191+
curl -Os https://uploader.codecov.io/latest/linux/codecov
192+
chmod +x codecov
193+
./codecov -t ${CODECOV_TOKEN} -Z -F "$REACT_DIST_TAG-jsdom"
191194
test_lint:
192195
<<: *defaults
193196
steps:
@@ -360,7 +363,10 @@ jobs:
360363
fi
361364
- run:
362365
name: Coverage
363-
command: bash <(curl -s https://codecov.io/bash) -Z -F "$REACT_DIST_TAG-browser"
366+
command: |
367+
curl -Os https://uploader.codecov.io/latest/linux/codecov
368+
chmod +x codecov
369+
./codecov -t ${CODECOV_TOKEN} -Z -F "$REACT_DIST_TAG-browser"
364370
- store_artifacts:
365371
# hardcoded in karma-webpack
366372
path: /tmp/_karma_webpack_

Diff for: .codesandbox/ci.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,9 @@
3636
},
3737
"sandboxes": [
3838
"material-ui-issue-latest-s2dsx",
39-
"github/mui-org/material-ui/tree/HEAD/examples/create-react-app",
40-
"github/mui-org/material-ui/tree/HEAD/examples/create-react-app-with-typescript",
41-
"github/mui-org/material-ui/tree/HEAD/examples/joy-cra-typescript"
39+
"github/mui/material-ui/tree/HEAD/examples/create-react-app",
40+
"github/mui/material-ui/tree/HEAD/examples/create-react-app-with-typescript",
41+
"github/mui/material-ui/tree/HEAD/examples/joy-cra-typescript"
4242
],
4343
"silent": true
4444
}

Diff for: .eslintrc.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ const path = require('path');
22

33
const forbidTopLevelMessage = [
44
'Prefer one level nested imports to avoid bundling everything in dev mode',
5-
'See https://github.com/mui-org/material-ui/pull/24147 for the kind of win it can unlock.',
5+
'See https://github.com/mui/material-ui/pull/24147 for the kind of win it can unlock.',
66
].join('\n');
77
// This only applies to packages published from this monorepo.
88
// If you build a library around `@mui/material` you can safely use `createStyles` without running into the same issue as we are.

Diff for: .github/ISSUE_TEMPLATE/1.bug.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ body:
1111
- type: checkboxes
1212
attributes:
1313
label: Duplicates
14-
description: Please [search the history](https://github.com/mui-org/material-ui/issues) to see if an issue already exists for the same problem.
14+
description: Please [search the history](https://github.com/mui/material-ui/issues) to see if an issue already exists for the same problem.
1515
options:
1616
- label: I have searched the existing issues
1717
required: true

Diff for: .github/ISSUE_TEMPLATE/2.feature.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ body:
1111
- type: checkboxes
1212
attributes:
1313
label: Duplicates
14-
description: Please [search the history](https://github.com/mui-org/material-ui/issues) to see if an issue already exists for the same problem.
14+
description: Please [search the history](https://github.com/mui/material-ui/issues) to see if an issue already exists for the same problem.
1515
options:
1616
- label: I have searched the existing issues
1717
required: true

Diff for: .github/PULL_REQUEST_TEMPLATE.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
<!-- Thanks so much for your PR, your contribution is appreciated! ❤️ -->
22

3-
- [ ] I have followed (at least) the [PR section of the contributing guide](https://github.com/mui-org/material-ui/blob/HEAD/CONTRIBUTING.md#sending-a-pull-request).
3+
- [ ] I have followed (at least) the [PR section of the contributing guide](https://github.com/mui/material-ui/blob/HEAD/CONTRIBUTING.md#sending-a-pull-request).

0 commit comments

Comments
 (0)