Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added ETIP fetch workflow #385 #386

Merged
merged 1 commit into from
Jan 15, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
72 changes: 72 additions & 0 deletions .github/workflows/exodus_etip_json_data.yml
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
1 change: 1 addition & 0 deletions .idea/dictionaries/Hamza.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading