-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Matías J. Schilling
committed
Nov 3, 2023
1 parent
dcf2d8e
commit 14e21ad
Showing
3 changed files
with
62 additions
and
0 deletions.
There are no files selected for viewing
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
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 |
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
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 |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
2.7-7.3.13 |