.github/workflows/DailyRiskScoreUpdateTrigger.yml #58
This file contains hidden or 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
| name: Daily Risk Score Update | |
| on: | |
| schedule: | |
| # Runs at 01:00 UTC every day | |
| - cron: '0 1 * * *' | |
| workflow_dispatch: # This enables manual triggering | |
| jobs: | |
| update-risk-scores: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Trigger risk score update endpoint | |
| run: | | |
| curl -X POST "https://api-intellifinance.shancloudservice.com/triggers/update-risk-scores" |