Update Data #145
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: Update Data | |
on: | |
schedule: | |
- cron: '0 0 * * *' # Run every 24 hours at midnight | |
push: | |
branches: | |
- master # Replace with the branch you want | |
- main | |
jobs: | |
update: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Set execute permission on update.sh # <-- Add this step | |
run: chmod +x update.sh | |
- name: Run update script | |
run: ./update.sh | |
- name: Commit and push changes | |
run: | | |
git config user.name "Automated Update" | |
git config user.email "[email protected]" | |
git add -A | |
if [[ -n $(git status -s) ]]; then | |
git commit -m "Automated data update" | |
git push | |
else | |
echo "No changes to commit" | |
exit 0 | |
fi | |
- name: Notify Discord if Success | |
if: success() | |
run: | | |
MESSAGE="Data update job completed. Status: ${{ job.status }}." | |
curl -H "Content-Type: application/json" -X POST -d "{\"content\": \"$MESSAGE\"}" ${{ secrets.DISCORD_WEBHOOK_URL }} | |
- name: Notify Discord if Failure | |
if: failure() | |
run: | | |
MESSAGE="Data update job failed. Status: ${{ job.status }}. <@GetNotifications>" | |
curl -H "Content-Type: application/json" -X POST -d "{\"content\": \"$MESSAGE\"}" ${{ secrets.DISCORD_WEBHOOK_URL }} |