-
-
Notifications
You must be signed in to change notification settings - Fork 57
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
73 additions
and
0 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,72 @@ | ||
name: Update ETIP Trackers JSON | ||
|
||
on: | ||
workflow_dispatch: # Allow manual triggering | ||
schedule: | ||
- cron: "0 0 * * 0" # Schedule to run every Sunday at midnight UTC (optional) | ||
|
||
jobs: | ||
exodus_data: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
|
||
- name: Download JSON file | ||
run: | | ||
wget -O etip_trackers.json https://etip.exodus-privacy.eu.org/api/trackers/ | ||
- name: Parse JSON and create Android resource file | ||
run: | | ||
python - <<EOF | ||
import json | ||
json_file = 'etip_trackers.json' | ||
# Format the JSON file | ||
with open(json_file, "r+", encoding="utf8") as file: | ||
json_content = json.load(file) | ||
json_content = json.dumps(json_content, indent=4, sort_keys=True) | ||
file.seek(0) | ||
file.write(json_content) | ||
EOF | ||
## Move etip_trackers.json to app/src/main/resources | ||
- name: Move Tracker JSON to Resources | ||
run: | | ||
if [ ! -d "./app/src/main/resources/" ]; then | ||
mkdir -p ./app/src/main/resources/ | ||
fi | ||
if [ -f "etip_trackers.json" ]; then | ||
echo "File exists, moving..." | ||
fi | ||
mv etip_trackers.json ./app/src/main/resources/ | ||
if [ -f "./app/src/main/resources/etip_trackers.json" ]; then | ||
echo "File moved successfully." | ||
fi | ||
# Check for changes | ||
- name: Check for changes | ||
id: git-status | ||
run: | | ||
export GIT_STATUS=$(git status --porcelain) | ||
echo "GIT_STATUS=$GIT_STATUS" >> $GITHUB_ENV | ||
if [ -z "$GIT_STATUS" ]; then | ||
echo "No changes detected..." | ||
fi | ||
# Commit changes to the repo | ||
- name: Commit changes | ||
if: env.GIT_STATUS != '' | ||
run: | | ||
git config --global user.email "[email protected]" | ||
git config --global user.name "GitHub Actions" | ||
git add . | ||
git commit -m "Automated Exodus ETIP JSON data update" | ||
git push origin master |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.