We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8306d62 commit 9b15609Copy full SHA for 9b15609
.github/workflows/fetch-repo-stats.yml
@@ -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