mirror of
https://github.com/SchildiChat/SchildiChat-android.git
synced 2024-11-21 17:05:39 +03:00
e24b288574
Change-Id: Ide9c11748f9e3deae773a2a4dcde101d06be5427
60 lines
1.8 KiB
YAML
60 lines
1.8 KiB
YAML
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
|