Skip to content

Commit

Permalink
Add GitHub action
Browse files Browse the repository at this point in the history
  • Loading branch information
Matías J. Schilling committed Nov 3, 2023
1 parent dcf2d8e commit 6fd71c6
Show file tree
Hide file tree
Showing 3 changed files with 54 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/update_rates_job.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# GitHub Actions documentation
# => https://docs.github.com/en/actions
name: Update Rates Cron Job

on:
schedule:
- cron: '0 3 * * *'

jobs:
update-rates:
runs-on: [ ubuntu-latest ]
steps:
- uses: actions/checkout@v3
run: |
git config user.email "[email protected]"
git config user.name "ci-build"
git config --list
- uses: actions/setup-python@v4
- run: ./script/update.sh

- name: Push changes
run: |
git status
git add README.md rate/\*.json
git commit --message='[skip ci] Automatic rates update'
git push
26 changes: 26 additions & 0 deletions .github/workflows/update_rates_manual.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# GitHub Actions documentation
# => https://docs.github.com/en/actions
name: Update Rates Manual

on:
workflow_dispatch

jobs:
update-rates:
runs-on: [ ubuntu-latest ]
steps:
- uses: actions/checkout@v3
run: |
git config user.email "[email protected]"
git config user.name "ci-build"
git config --list
- uses: actions/setup-python@v4
- run: ./script/update.sh

- name: Push changes
run: |
git status
git add README.md rate/\*.json
git commit --message='[skip ci] Automatic rates update'
git push
1 change: 1 addition & 0 deletions .python-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
2.7-7.3.13

0 comments on commit 6fd71c6

Please sign in to comment.