-
Notifications
You must be signed in to change notification settings - Fork 497
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'release/1.9.10/master'
- Loading branch information
Showing
203 changed files
with
4,269 additions
and
1,208 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,9 +1,6 @@ | ||
name: UI Tests CI | ||
|
||
on: | ||
push: | ||
branches: [ develop ] | ||
|
||
pull_request: | ||
|
||
workflow_dispatch: | ||
|
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 |
---|---|---|
|
@@ -17,7 +17,8 @@ jobs: | |
contains(github.event.issue.labels.*.name, 'Z-IA') || | ||
contains(github.event.issue.labels.*.name, 'A-Themes-Custom') || | ||
contains(github.event.issue.labels.*.name, 'A-E2EE-Dehydration') || | ||
contains(github.event.issue.labels.*.name, 'A-Tags') | ||
contains(github.event.issue.labels.*.name, 'A-Tags') || | ||
contains(github.event.issue.labels.*.name, 'A-Rich-Text-Editor') | ||
steps: | ||
- uses: actions/github-script@v5 | ||
with: | ||
|
@@ -44,7 +45,13 @@ jobs: | |
name: P1 X-Needs-Design to Design project board | ||
runs-on: ubuntu-latest | ||
if: > | ||
contains(github.event.issue.labels.*.name, 'X-Needs-Design') | ||
contains(github.event.issue.labels.*.name, 'X-Needs-Design') && | ||
(contains(github.event.issue.labels.*.name, 'S-Critical') && | ||
(contains(github.event.issue.labels.*.name, 'O-Frequent') || | ||
contains(github.event.issue.labels.*.name, 'O-Occasional')) || | ||
(contains(github.event.issue.labels.*.name, 'S-Major') && | ||
contains(github.event.issue.labels.*.name, 'O-Frequent')) || | ||
contains(github.event.issue.labels.*.name, 'A11y')) | ||
steps: | ||
- uses: octokit/[email protected] | ||
id: add_to_project | ||
|
@@ -202,3 +209,105 @@ jobs: | |
env: | ||
PROJECT_ID: "PN_kwDOAM0swc4AArk0" | ||
GITHUB_TOKEN: ${{ secrets.ELEMENT_BOT_TOKEN }} | ||
|
||
ps_features1: | ||
name: Add labelled issues to PS features team 1 | ||
runs-on: ubuntu-latest | ||
if: > | ||
contains(github.event.issue.labels.*.name, 'A-Polls') || | ||
contains(github.event.issue.labels.*.name, 'A-Location-Sharing') || | ||
(contains(github.event.issue.labels.*.name, 'A-Voice-Messages') && | ||
!contains(github.event.issue.labels.*.name, 'A-Broadcast')) || | ||
(contains(github.event.issue.labels.*.name, 'A-Session-Mgmt') && | ||
contains(github.event.issue.labels.*.name, 'A-User-Settings')) | ||
steps: | ||
- uses: octokit/[email protected] | ||
id: add_to_project | ||
with: | ||
headers: '{"GraphQL-Features": "projects_next_graphql"}' | ||
query: | | ||
mutation add_to_project($projectid:ID!,$contentid:ID!) { | ||
addProjectV2ItemById(input: {projectId: $projectid contentId: $contentid}) { | ||
item { | ||
id | ||
} | ||
} | ||
} | ||
projectid: ${{ env.PROJECT_ID }} | ||
contentid: ${{ github.event.issue.node_id }} | ||
env: | ||
PROJECT_ID: "PVT_kwDOAM0swc4AHJKF" | ||
GITHUB_TOKEN: ${{ secrets.ELEMENT_BOT_TOKEN }} | ||
|
||
ps_features2: | ||
name: Add labelled issues to PS features team 2 | ||
runs-on: ubuntu-latest | ||
if: > | ||
contains(github.event.issue.labels.*.name, 'A-DM-Start') || | ||
contains(github.event.issue.labels.*.name, 'A-Broadcast') | ||
steps: | ||
- uses: octokit/[email protected] | ||
id: add_to_project | ||
with: | ||
headers: '{"GraphQL-Features": "projects_next_graphql"}' | ||
query: | | ||
mutation add_to_project($projectid:ID!,$contentid:ID!) { | ||
addProjectV2ItemById(input: {projectId: $projectid contentId: $contentid}) { | ||
item { | ||
id | ||
} | ||
} | ||
} | ||
projectid: ${{ env.PROJECT_ID }} | ||
contentid: ${{ github.event.issue.node_id }} | ||
env: | ||
PROJECT_ID: "PVT_kwDOAM0swc4AHJKd" | ||
GITHUB_TOKEN: ${{ secrets.ELEMENT_BOT_TOKEN }} | ||
|
||
ps_features3: | ||
name: Add labelled issues to PS features team 3 | ||
runs-on: ubuntu-latest | ||
if: > | ||
contains(github.event.issue.labels.*.name, 'A-Rich-Text-Editor') | ||
steps: | ||
- uses: octokit/[email protected] | ||
id: add_to_project | ||
with: | ||
headers: '{"GraphQL-Features": "projects_next_graphql"}' | ||
query: | | ||
mutation add_to_project($projectid:ID!,$contentid:ID!) { | ||
addProjectV2ItemById(input: {projectId: $projectid contentId: $contentid}) { | ||
item { | ||
id | ||
} | ||
} | ||
} | ||
projectid: ${{ env.PROJECT_ID }} | ||
contentid: ${{ github.event.issue.node_id }} | ||
env: | ||
PROJECT_ID: "PVT_kwDOAM0swc4AHJKW" | ||
GITHUB_TOKEN: ${{ secrets.ELEMENT_BOT_TOKEN }} | ||
|
||
voip: | ||
name: Add labelled issues to VoIP project board | ||
runs-on: ubuntu-latest | ||
if: > | ||
contains(github.event.issue.labels.*.name, 'Team: VoIP') | ||
steps: | ||
- uses: octokit/[email protected] | ||
id: add_to_project | ||
with: | ||
headers: '{"GraphQL-Features": "projects_next_graphql"}' | ||
query: | | ||
mutation add_to_project($projectid:ID!,$contentid:ID!) { | ||
addProjectV2ItemById(input: {projectId: $projectid contentId: $contentid}) { | ||
item { | ||
id | ||
} | ||
} | ||
} | ||
projectid: ${{ env.PROJECT_ID }} | ||
contentid: ${{ github.event.issue.node_id }} | ||
env: | ||
PROJECT_ID: "PVT_kwDOAM0swc4ABMIk" | ||
GITHUB_TOKEN: ${{ secrets.ELEMENT_BOT_TOKEN }} |
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
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
12 changes: 12 additions & 0 deletions
12
.../Images.xcassets/DeviceManager/user_session_list_item_not_selected.imageset/Contents.json
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,12 @@ | ||
{ | ||
"images" : [ | ||
{ | ||
"filename" : "user_session_list_item_not_selected.svg", | ||
"idiom" : "universal" | ||
} | ||
], | ||
"info" : { | ||
"author" : "xcode", | ||
"version" : 1 | ||
} | ||
} |
3 changes: 3 additions & 0 deletions
3
...session_list_item_not_selected.imageset/user_session_list_item_not_selected.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
12 changes: 12 additions & 0 deletions
12
...sets/Images.xcassets/DeviceManager/user_session_list_item_selected.imageset/Contents.json
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,12 @@ | ||
{ | ||
"images" : [ | ||
{ | ||
"filename" : "user_session_list_item_selected.svg", | ||
"idiom" : "universal" | ||
} | ||
], | ||
"info" : { | ||
"author" : "xcode", | ||
"version" : 1 | ||
} | ||
} |
4 changes: 4 additions & 0 deletions
4
...er/user_session_list_item_selected.imageset/user_session_list_item_selected.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 3 additions & 3 deletions
6
...es.xcassets/Room/VoiceMessages/voice_message_record_button_default.imageset/Contents.json
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
Binary file added
BIN
+459 Bytes
.../VoiceMessages/voice_message_record_button_default.imageset/Microphone icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+818 Bytes
...iceMessages/voice_message_record_button_default.imageset/Microphone [email protected]
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+1.16 KB
...iceMessages/voice_message_record_button_default.imageset/Microphone [email protected]
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed
BIN
-694 Bytes
...eMessages/voice_message_record_button_default.imageset/action_voice_message.png
Binary file not shown.
Binary file removed
BIN
-1.19 KB
...ssages/voice_message_record_button_default.imageset/[email protected]
Binary file not shown.
Binary file removed
BIN
-1.66 KB
...ssages/voice_message_record_button_default.imageset/[email protected]
Binary file not shown.
6 changes: 3 additions & 3 deletions
6
....xcassets/Room/VoiceMessages/voice_message_record_button_recording.imageset/Contents.json
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
Binary file added
BIN
+1.94 KB
...iceMessages/voice_message_record_button_recording.imageset/Microphone asset.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+3.77 KB
...Messages/voice_message_record_button_recording.imageset/Microphone [email protected]
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+5.51 KB
...Messages/voice_message_record_button_recording.imageset/Microphone [email protected]
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed
BIN
-2.8 KB
...sage_record_button_recording.imageset/voice_message_record_button_recording.png
Binary file not shown.
Binary file not shown.
Binary file not shown.
Oops, something went wrong.