forked from SkalskiP/star-track
-
Notifications
You must be signed in to change notification settings - Fork 2
32 lines (25 loc) · 942 Bytes
/
star-tracker.yml
File metadata and controls
32 lines (25 loc) · 942 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
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 and Downloads
uses: roboflow/star-track@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
organizations: 'roboflow, autodistill, huggingface, voxel51, ultralytics, Lightning-AI'
pypi_packages: 'rf100vl,rfdetr,rfdetr-plus,roboflow,supervision,trackers,ultralytics,inference,inference-gpu,inference-sdk,inference-cli,inference-core,inference-cpu,inference-models'
- name: Commit Data
uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: Update tracking data
file_pattern: 'data/*.csv'