Merge pull request #4 from Aitous/feature/discovery-enhancements
feat: add performance tracking step to daily discovery workflow
This commit is contained in:
commit
763c44691e
|
|
@ -89,6 +89,24 @@ jobs:
|
||||||
git push
|
git push
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
- name: Track recommendation performance
|
||||||
|
if: success()
|
||||||
|
run: |
|
||||||
|
python scripts/track_recommendation_performance.py
|
||||||
|
|
||||||
|
- name: Commit performance updates
|
||||||
|
if: success()
|
||||||
|
run: |
|
||||||
|
git config user.name "github-actions[bot]"
|
||||||
|
git config user.email "github-actions[bot]@users.noreply.github.com"
|
||||||
|
git add data/recommendations/ || true
|
||||||
|
if git diff --cached --quiet; then
|
||||||
|
echo "No performance updates"
|
||||||
|
else
|
||||||
|
git commit -m "chore: update performance tracking ${{ steps.date.outputs.analysis_date }}"
|
||||||
|
git push
|
||||||
|
fi
|
||||||
|
|
||||||
- name: Update positions
|
- name: Update positions
|
||||||
if: success()
|
if: success()
|
||||||
env:
|
env:
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue