Sync Data From External Sources #161
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
name: Sync Data From External Sources | |
on: | |
workflow_dispatch: | |
schedule: | |
# At 00:00 on every Monday UTC | |
- cron: '0 0 * * 1' | |
jobs: | |
sync-emojis: | |
runs-on: ubuntu-latest | |
# Skip in forks | |
if: github.repository == 'element-hq/element-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.8 | |
- name: Install Prerequisite dependencies | |
run: | | |
pip install BeautifulSoup4 | |
pip install requests | |
- name: Run Emoji script | |
run: ./tools/import_emojis.py | |
- name: Create Pull Request for Emojis | |
uses: peter-evans/create-pull-request@v5 | |
with: | |
commit-message: Sync Emojis | |
title: Sync Emojis | |
body: | | |
- Update Emojis from Unicode.org | |
branch: sync-emojis | |
base: develop | |
sync-sas-strings: | |
runs-on: ubuntu-latest | |
# Skip in forks | |
if: github.repository == 'element-hq/element-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.8 | |
- name: Install Prerequisite dependencies | |
run: | | |
pip install requests | |
- name: Run SAS String script | |
run: ./tools/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 |