Skip to content

Commit 2bad703

Browse files
author
Blue F
authored
Merge branch 'develop' into 9b967e0-master-into-develop
2 parents 9b967e0 + a3f0d63 commit 2bad703

File tree

341 files changed

+15679
-3975
lines changed

Some content is hidden

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

341 files changed

+15679
-3975
lines changed

.gitattributes

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
* text=auto
22

33
*.json text eol=lf
4+
5+
packages/errors/__snapshot-html__/** linguist-generated=true

.github/semantic.yml

Lines changed: 0 additions & 2 deletions
This file was deleted.

.github/workflows/merge-develop-into-10.0-release.yml

Lines changed: 0 additions & 78 deletions
This file was deleted.

.github/workflows/merge-master-into-develop.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@ jobs:
1111
uses: actions/checkout@v2
1212
with:
1313
fetch-depth: 0
14-
token: ${{ secrets.GITHUB_TOKEN }}
14+
# the default `GITHUB_TOKEN` cannot push to protected branches, so use `cypress-app-bot`'s token instead
15+
token: ${{ secrets.BOT_GITHUB_TOKEN }}
1516
- name: Set committer info
1617
run: |
1718
git config --local user.email "$(git log --format='%ae' HEAD^!)"
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: "Semantic Pull Request"
2+
3+
on:
4+
pull_request_target:
5+
types:
6+
- opened
7+
- edited
8+
- synchronize
9+
10+
jobs:
11+
main:
12+
name: Lint Title
13+
runs-on: ubuntu-latest
14+
steps:
15+
# use a fork of the GitHub action - we cannot pull in untrusted third party actions
16+
# see https://github.com/cypress-io/cypress/pull/20091#discussion_r801799647
17+
- uses: cypress-io/action-semantic-pull-request@v4
18+
env:
19+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
20+
with:
21+
validateSingleCommit: true

.gitignore

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@ packages/config/lib/*.js
1818

1919
# from data-context, compiled .js files
2020
packages/data-context/src/**/*.js
21+
packages/errors/src/**/*.js
22+
packages/errors/test/**/*.js
2123

2224
# from desktop-gui
2325
packages/desktop-gui/cypress/videos
@@ -68,6 +70,7 @@ packages/socket/lib/*.js
6870

6971
# from system-tests
7072
system-tests/.projects
73+
system-tests/.http-mitm-proxy
7174
system-tests/fixtures/large-img
7275

7376
# from npm/react
@@ -83,6 +86,11 @@ system-tests/fixtures/large-img
8386
# from runner-ct
8487
/packages/runner-ct/cypress/screenshots
8588

89+
# from errors
90+
/packages/errors/__snapshot-images__
91+
/packages/errors/__snapshot-md__
92+
/packages/errors/__snapshot-html-local__
93+
8694
# graphql, auto-generated
8795
/packages/launchpad/src/generated
8896
/packages/app/src/generated

.vscode/settings.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,6 @@
3636
"i18n-ally.keystyle": "nested",
3737

3838
// Volar is the main extension that powers Vue's language features.
39-
"volar.autoCompleteRefs": false,
40-
"volar.takeOverMode.enabled": true
39+
// "volar.autoCompleteRefs": false,
40+
"volar.takeOverMode.enabled": true,
4141
}

__snapshots__/bump-spec.js

Lines changed: 0 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,9 @@
11
exports['list of all projects'] = [
2-
{
3-
"repo": "cypress-io/cypress-test-tiny",
4-
"provider": "circle",
5-
"platform": "win32"
6-
},
72
{
83
"repo": "cypress-io/cypress-test-example-repos",
94
"provider": "circle",
105
"platform": "win32"
116
},
12-
{
13-
"repo": "cypress-io/cypress-test-tiny",
14-
"provider": "circle",
15-
"platform": "linux"
16-
},
177
{
188
"repo": "cypress-io/cypress-test-module-api",
199
"provider": "circle",
@@ -24,11 +14,6 @@ exports['list of all projects'] = [
2414
"provider": "circle",
2515
"platform": "linux"
2616
},
27-
{
28-
"repo": "cypress-io/cypress-test-nested-projects",
29-
"provider": "circle",
30-
"platform": "linux"
31-
},
3217
{
3318
"repo": "cypress-io/cypress-test-ci-environments",
3419
"provider": "circle",
@@ -39,11 +24,6 @@ exports['list of all projects'] = [
3924
"provider": "circle",
4025
"platform": "linux"
4126
},
42-
{
43-
"repo": "cypress-io/cypress-test-tiny",
44-
"provider": "circle",
45-
"platform": "darwin"
46-
},
4727
{
4828
"repo": "cypress-io/cypress-test-example-repos",
4929
"provider": "circle",
@@ -52,11 +32,6 @@ exports['list of all projects'] = [
5232
]
5333

5434
exports['should have just circle and darwin projects'] = [
55-
{
56-
"repo": "cypress-io/cypress-test-tiny",
57-
"provider": "circle",
58-
"platform": "darwin"
59-
},
6035
{
6136
"repo": "cypress-io/cypress-test-example-repos",
6237
"provider": "circle",

__snapshots__/upload-npm-package-spec.js

Lines changed: 0 additions & 9 deletions
This file was deleted.

__snapshots__/upload-unique-binary-spec.js

Lines changed: 0 additions & 26 deletions
This file was deleted.

0 commit comments

Comments
 (0)