-
-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' of https://github.com/vector-im/element-web in…
…to t3chguy/dedup-icons
- Loading branch information
Showing
150 changed files
with
4,162 additions
and
2,827 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
_extends: matrix-org/matrix-react-sdk | ||
_extends: element-hq/matrix-react-sdk | ||
version-resolver: | ||
default: patch |
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
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 |
---|---|---|
|
@@ -53,7 +53,7 @@ jobs: | |
uses: actions/checkout@v4 | ||
if: inputs.matrix-react-sdk | ||
with: | ||
repository: matrix-org/matrix-react-sdk | ||
repository: element-hq/matrix-react-sdk | ||
path: matrix-react-sdk | ||
ref: staging | ||
fetch-depth: 0 | ||
|
@@ -70,11 +70,27 @@ jobs: | |
fetch-tags: true | ||
token: ${{ secrets.ELEMENT_BOT_TOKEN }} | ||
|
||
- name: Merge develop | ||
- name: Prepare Git | ||
run: | | ||
git config --global user.email "[email protected]" | ||
git config --global user.name "RiotRobot" | ||
for REPO in $REPOS; do [ -d "$REPO" ] && git -C "$REPO" merge origin/develop; done | ||
- name: Merge Element Desktop | ||
if: inputs.element-desktop | ||
run: | | ||
git -C "element-desktop" merge origin/develop | ||
- name: Merge Element Web | ||
if: inputs.element-web | ||
run: | | ||
git -C "element-web" merge origin/develop | ||
- name: Merge React SDK | ||
if: inputs.matrix-react-sdk | ||
run: | | ||
git -C "matrix-react-sdk" merge origin/develop | ||
- name: Merge JS SDK | ||
if: inputs.matrix-js-sdk | ||
run: | | ||
git -C "matrix-js-sdk" merge origin/develop | ||
- name: Push staging | ||
run: for REPO in $REPOS; do [ -d "$REPO" ] && git -C "$REPO" push origin staging; done | ||
|
@@ -95,7 +111,7 @@ jobs: | |
uses: t3chguy/wait-on-check-action@18541021811b56544d90e0f073401c2b99e249d6 # fork | ||
with: | ||
ref: staging | ||
repo: matrix-org/matrix-react-sdk | ||
repo: element-hq/matrix-react-sdk | ||
repo-token: ${{ secrets.ELEMENT_BOT_TOKEN }} | ||
wait-interval: 10 | ||
check-name: draft | ||
|
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 |
---|---|---|
|
@@ -14,7 +14,6 @@ jobs: | |
runs-on: ubuntu-latest | ||
if: > | ||
contains(github.event.issue.labels.*.name, 'A-Maths') || | ||
contains(github.event.issue.labels.*.name, 'A-Message-Pinning') || | ||
contains(github.event.issue.labels.*.name, 'A-Location-Sharing') || | ||
contains(github.event.issue.labels.*.name, 'Z-IA') || | ||
contains(github.event.issue.labels.*.name, 'A-Jump-To-Date ') || | ||
|
@@ -60,7 +59,7 @@ jobs: | |
contains(github.event.issue.labels.*.name, 'X-Needs-Info') | ||
steps: | ||
- id: add_to_project | ||
uses: actions/[email protected].1 | ||
uses: actions/[email protected].2 | ||
with: | ||
project-url: ${{ env.PROJECT_URL }} | ||
github-token: ${{ secrets.ELEMENT_BOT_TOKEN }} | ||
|
@@ -83,7 +82,7 @@ jobs: | |
contains(github.event.issue.labels.*.name, 'Z-Flaky-Test') | ||
steps: | ||
- id: add_to_project | ||
uses: actions/[email protected].1 | ||
uses: actions/[email protected].2 | ||
with: | ||
project-url: ${{ env.PROJECT_URL }} | ||
github-token: ${{ secrets.ELEMENT_BOT_TOKEN }} | ||
|
@@ -175,26 +174,3 @@ jobs: | |
with: | ||
project-url: https://github.com/orgs/element-hq/projects/101 | ||
github-token: ${{ secrets.ELEMENT_BOT_TOKEN }} | ||
|
||
element_r: | ||
name: Add Element R issues to Crypto Team board | ||
runs-on: ubuntu-latest | ||
if: > | ||
contains(github.event.issue.labels.*.name, 'A-Element-R') | ||
steps: | ||
- id: add_to_project | ||
uses: actions/[email protected] | ||
with: | ||
project-url: ${{ env.PROJECT_URL }} | ||
github-token: ${{ secrets.ELEMENT_BOT_TOKEN }} | ||
|
||
- id: set_fields | ||
uses: titoportas/update-project-fields@421a54430b3cdc9eefd8f14f9ce0142ab7678751 # v0.1.0 | ||
with: | ||
project-url: ${{ env.PROJECT_URL }} | ||
github-token: ${{ secrets.ELEMENT_BOT_TOKEN }} | ||
item-id: ${{ steps.add_to_project.outputs.itemId }} # Use the item-id output of the previous step | ||
field-keys: Workstream,module | ||
field-values: Element-R,web | ||
env: | ||
PROJECT_URL: https://github.com/orgs/element-hq/projects/76 |
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,4 @@ | ||
#!/usr/bin/env sh | ||
. "$(dirname "$0")/_/husky.sh" | ||
|
||
npx lint-staged --concurrent false |
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,7 @@ | ||
{ | ||
"*": "prettier --write", | ||
"src/**/*.(ts|tsx)": ["eslint --fix"], | ||
"scripts/**/*.(ts|tsx)": ["eslint --fix"], | ||
"module_system/**/*.(ts|tsx)": ["eslint --fix --config .eslintrc-module_system.js module_system"], | ||
"*.pcss": ["stylelint --fix"] | ||
} |
Oops, something went wrong.