Skip to content

Commit 9b15609

Browse files
authored
Added fetch-repo-stats.yml github action
1 parent 8306d62 commit 9b15609

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Fetch Repo Stats
2+
3+
on:
4+
schedule:
5+
# Run this once per day, towards the end of the day for keeping the most
6+
# recent data point most meaningful (hours are interpreted in UTC).
7+
- cron: '0 23 * * *'
8+
workflow_dispatch: # Allow for running this manually.
9+
10+
jobs:
11+
j1:
12+
name: store-repo-stats
13+
runs-on: ubuntu-latest
14+
steps:
15+
- name: run-ghrs
16+
uses: jgehrcke/github-repo-stats@RELEASE
17+
with:
18+
ghtoken: ${{ secrets.GH_PERSONAL_ACCESS_TOKEN }}

0 commit comments

Comments
 (0)