🌟 Star Tracker - Master/Cron #56
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: 🌟 Star Tracker - Master/Cron | |
on: | |
schedule: | |
- cron: '0 0 * * *' # Runs daily at midnight | |
workflow_dispatch: | |
permissions: | |
contents: write # Grants push access | |
jobs: | |
track-stars: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v4 | |
- name: Track Stars | |
uses: roboflow/star-track@master | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
organizations: 'roboflow, autodistill, huggingface, voxel51, ultralytics, Lightning-AI' | |
- name: Commit Data | |
uses: stefanzweifel/git-auto-commit-action@v4 | |
with: | |
commit_message: Update star data | |
file_pattern: data/data.csv |