We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ac418a0 commit bc1ffa5Copy full SHA for bc1ffa5
.github/workflows/github-repo-stats.yml
@@ -0,0 +1,19 @@
1
+name: github-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: github-repo-stats
13
+ runs-on: ubuntu-latest
14
+ steps:
15
+ - name: run-ghrs
16
+ # Use latest release.
17
+ uses: jgehrcke/github-repo-stats@RELEASE
18
+ with:
19
+ ghtoken: ${{ secrets.ghrs_github_api_token }}
0 commit comments