Skip to content

Commit b41dc96

Browse files
committed
collect serverless llm stat
0 parents  commit b41dc96

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
on:
2+
schedule:
3+
# Run this once per day, towards the end of the day for keeping the most
4+
# recent data point most meaningful (hours are interpreted in UTC).
5+
- cron: "0 23 * * *"
6+
workflow_dispatch: # Allow for running this manually.
7+
8+
jobs:
9+
j1:
10+
name: repostats-for-serverless-llm
11+
runs-on: ubuntu-latest
12+
steps:
13+
- name: run-ghrs
14+
uses: jgehrcke/github-repo-stats@RELEASE
15+
with:
16+
# Define the stats repository (the repo to fetch
17+
# stats for and to generate the report for).
18+
# Remove the parameter when the stats repository
19+
# and the data repository are the same.
20+
repository: ServerlessLLM/ServerlessLLM
21+
# Set a GitHub API token that can read the GitHub
22+
# repository traffic API for the stats repository,
23+
# and that can push commits to the data repository
24+
# (which this workflow file lives in, to store data
25+
# and the report files).
26+
ghtoken: ${{ secrets.ghrs_github_api_token }}

0 commit comments

Comments
 (0)