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 7a2dab3
Show file tree
Hide file tree
Showing 4 changed files with 47 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/update_rates.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Update Rates

on:
workflow_call

jobs:
update-rates:
runs-on: [ ubuntu-latest ]
steps:
- name: Setup Git
run: |
git config user.email "[email protected]"
git config user.name "ci-build"
git config --list
- uses: actions/checkout@v3
- 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
11 changes: 11 additions & 0 deletions .github/workflows/update_rates_job.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# GitHub Actions documentation
# => https://docs.github.com/en/actions
name: Update Rates Cron Job

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

jobs:
update-rates:
uses: ./.github/workflows/update_rates.yml
10 changes: 10 additions & 0 deletions .github/workflows/update_rates_manual.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# GitHub Actions documentation
# => https://docs.github.com/en/actions
name: Update Rates Manual

on:
workflow_dispatch

jobs:
update-rates:
uses: ./.github/workflows/update_rates.yml
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 7a2dab3

Please sign in to comment.