-
Notifications
You must be signed in to change notification settings - Fork 156
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1965 from vector-im/feature/bma/emojiRepresentation
Fix emoji representation
- Loading branch information
Showing
121 changed files
with
4,109 additions
and
91 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 |
---|---|---|
@@ -0,0 +1,35 @@ | ||
name: Sync SAS strings | ||
on: | ||
workflow_dispatch: | ||
schedule: | ||
# At 00:00 on every Monday UTC | ||
- cron: '0 0 * * 1' | ||
|
||
jobs: | ||
sync-sas-strings: | ||
runs-on: ubuntu-latest | ||
# Skip in forks | ||
if: github.repository == 'vector-im/element-x-android' | ||
# No concurrency required, runs every time on a schedule. | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Set up Python 3.8 | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: 3.9 | ||
- name: Install Prerequisite dependencies | ||
run: | | ||
pip install requests | ||
- name: Run SAS String script | ||
run: ./tools/sas/import_sas_strings.py | ||
- name: Create Pull Request for SAS Strings | ||
uses: peter-evans/create-pull-request@v5 | ||
with: | ||
commit-message: Sync SAS Strings | ||
title: Sync SAS Strings | ||
body: | | ||
- Update SAS Strings from matrix-doc. | ||
branch: sync-sas-strings | ||
base: develop | ||
|
||
|
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 @@ | ||
Update rendering of Emojis displayed during verification. |
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
Oops, something went wrong.