mirror of
https://github.com/caty21/forex-dashboard.git
synced 2026-08-03 15:57:43 +00:00
1e88b02acd
- TvAdvancedChart: hide_top_toolbar false → outils de dessin visibles - GitHub Actions: workflow fetch-rate-data.yml (cron horaire) Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
30 lines
856 B
YAML
30 lines
856 B
YAML
name: Fetch Rate Probabilities
|
|
|
|
on:
|
|
schedule:
|
|
- cron: '0 * * * *' # toutes les heures
|
|
workflow_dispatch: # déclenchement manuel
|
|
|
|
jobs:
|
|
fetch:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
- uses: actions/setup-node@v4
|
|
with:
|
|
node-version: '20'
|
|
|
|
- name: Fetch rate probabilities from rateprobability.com
|
|
run: node .github/scripts/fetch-rate-data.mjs
|
|
|
|
- name: Commit updated data (if changed)
|
|
run: |
|
|
git config user.name "github-actions[bot]"
|
|
git config user.email "github-actions[bot]@users.noreply.github.com"
|
|
git add data/rate-probabilities.json
|
|
git diff --staged --quiet || git commit -m "chore: update rate-probabilities data [skip ci]"
|
|
git push
|