feat: add percentages dto and endpoint (#177) #6
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
name: update-helm-wf | |
on: | |
push: | |
branches: | |
- "main" | |
paths: | |
- "api/alembic/**" | |
- ".github/workflows/helm-**" | |
jobs: | |
update-chart: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
repository: 'radicalbit/radicalbit-helm-charts' | |
token: ${{ secrets.GIT_HUB_PAT }} | |
- name: Update Chart timestamp | |
uses: mikefarah/[email protected] | |
with: | |
cmd: yq -i ".lastUpdateTimestamp = $(date +%s)" "charts/radicalbit-ai-monitoring/values.yaml" | |
- name: Commit changes | |
uses: stefanzweifel/git-auto-commit-action@v5 | |
with: | |
commit_message: Update Chart timestamp | |
env: | |
GITHUB_TOKEN: ${{ secrets.GIT_HUB_PAT }} |