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 14e21ad
Show file tree
Hide file tree
Showing 3 changed files with 62 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/update_rates_job.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# 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

- name: Setup Git
run: |
git config user.email "[email protected]"
git config user.name "ci-build"
git config --list
- uses: actions/setup-python@v4

- name: Update Rates
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
30 changes: 30 additions & 0 deletions .github/workflows/update_rates_manual.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# 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

- name: Setup Git
run: |
git config user.email "[email protected]"
git config user.name "ci-build"
git config --list
- uses: actions/setup-python@v4

- name: Update Rates
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 14e21ad

Please sign in to comment.