Skip to content

Commit 66a873f

Browse files
author
Gerardo Pacheco
committed
Merge branch 'rnmobile/3163-GSS' into rnmobile/feature/global-styles-root-styles
2 parents 1dc8de1 + ee936cb commit 66a873f

File tree

574 files changed

+8835
-4560
lines changed

Some content is hidden

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

574 files changed

+8835
-4560
lines changed

.eslintrc.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -168,6 +168,7 @@ module.exports = {
168168
'import/no-extraneous-dependencies': 'off',
169169
'import/no-unresolved': 'off',
170170
'import/named': 'off',
171+
'@wordpress/data-no-store-string-literals': 'off',
171172
},
172173
},
173174
{

.github/workflows/build-plugin-zip.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,13 @@ on:
1010
description: 'rc or stable?'
1111
required: true
1212

13+
# Cancels all previous workflow runs for pull requests that have not completed.
14+
concurrency:
15+
# The concurrency group contains the workflow name and the branch name for pull requests
16+
# or the commit hash for any other events.
17+
group: ${{ github.workflow }}-${{ github.event_name == 'pull_request' && github.head_ref || github.sha }}
18+
cancel-in-progress: true
19+
1320
jobs:
1421
bump-version:
1522
name: Bump version

.github/workflows/bundle-size.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@ name: Compressed Size
22

33
on: [pull_request]
44

5+
# Cancels all previous workflow runs for pull requests that have not completed.
6+
concurrency:
7+
# The concurrency group contains the workflow name and the branch name for pull requests
8+
# or the commit hash for any other events.
9+
group: ${{ github.workflow }}-${{ github.event_name == 'pull_request' && github.head_ref || github.sha }}
10+
cancel-in-progress: true
11+
512
jobs:
613
build:
714
name: Check

.github/workflows/cancel.yml

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

.github/workflows/create-block.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,13 @@ on:
55
push:
66
branches: [trunk, wp/trunk]
77

8+
# Cancels all previous workflow runs for pull requests that have not completed.
9+
concurrency:
10+
# The concurrency group contains the workflow name and the branch name for pull requests
11+
# or the commit hash for any other events.
12+
group: ${{ github.workflow }}-${{ github.event_name == 'pull_request' && github.head_ref || github.sha }}
13+
cancel-in-progress: true
14+
815
jobs:
916
checks:
1017
name: Checks

.github/workflows/end2end-test.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,13 @@ on:
88
- 'release/**'
99
- 'wp/**'
1010

11+
# Cancels all previous workflow runs for pull requests that have not completed.
12+
concurrency:
13+
# The concurrency group contains the workflow name and the branch name for pull requests
14+
# or the commit hash for any other events.
15+
group: ${{ github.workflow }}-${{ github.event_name == 'pull_request' && github.head_ref || github.sha }}
16+
cancel-in-progress: true
17+
1118
jobs:
1219
admin:
1320
name: Admin - ${{ matrix.part }}

.github/workflows/performance.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,13 @@ on:
55
release:
66
types: [published]
77

8+
# Cancels all previous workflow runs for pull requests that have not completed.
9+
concurrency:
10+
# The concurrency group contains the workflow name and the branch name for pull requests
11+
# or the commit hash for any other events.
12+
group: ${{ github.workflow }}-${{ github.event_name == 'pull_request' && github.head_ref || github.sha }}
13+
cancel-in-progress: true
14+
815
jobs:
916
performance:
1017
name: Run performance tests

.github/workflows/rnmobile-android-runner.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,13 @@ on:
55
push:
66
branches: [trunk]
77

8+
# Cancels all previous workflow runs for pull requests that have not completed.
9+
concurrency:
10+
# The concurrency group contains the workflow name and the branch name for pull requests
11+
# or the commit hash for any other events.
12+
group: ${{ github.workflow }}-${{ github.event_name == 'pull_request' && github.head_ref || github.sha }}
13+
cancel-in-progress: true
14+
815
jobs:
916
test:
1017
runs-on: macos-latest

.github/workflows/rnmobile-ios-runner.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,13 @@ on:
55
push:
66
branches: [trunk]
77

8+
# Cancels all previous workflow runs for pull requests that have not completed.
9+
concurrency:
10+
# The concurrency group contains the workflow name and the branch name for pull requests
11+
# or the commit hash for any other events.
12+
group: ${{ github.workflow }}-${{ github.event_name == 'pull_request' && github.head_ref || github.sha }}
13+
cancel-in-progress: true
14+
815
jobs:
916
test:
1017
runs-on: macos-latest

.github/workflows/static-checks.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,13 @@ on:
88
- 'release/**'
99
- 'wp/**'
1010

11+
# Cancels all previous workflow runs for pull requests that have not completed.
12+
concurrency:
13+
# The concurrency group contains the workflow name and the branch name for pull requests
14+
# or the commit hash for any other events.
15+
group: ${{ github.workflow }}-${{ github.event_name == 'pull_request' && github.head_ref || github.sha }}
16+
cancel-in-progress: true
17+
1118
jobs:
1219
check:
1320
name: All

0 commit comments

Comments
 (0)