-
Notifications
You must be signed in to change notification settings - Fork 0
61 lines (58 loc) · 2.16 KB
/
github-repo-stats-sot.yml
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
name: GH STATS ON STACK-OF-TASKS
on:
schedule:
# Run this once per day (hours in UTC time zone).
- cron: "* 7 * * *"
workflow_dispatch: # Allow for running this manually.
jobs:
j1:
name: stats pinocchi
runs-on: ubuntu-latest
steps:
- name: GHRS
uses: jgehrcke/github-repo-stats@RELEASE
with:
# Define the target repository, the repo to fetch
# stats for and to generate the report for.
# Leave this undefined when stats repository
# and data repository should be the same.
repository: stack-of-tasks/pinocchio
# Required token privileges: Can read the target
# repo, and can push to the repository this
# workflow file lives in (to store data and
# the report files).
ghtoken: ${{ secrets.GHRS_SOT_GITHUB_API_TOKEN }}
j2:
name: stats eigenpy
runs-on: ubuntu-latest
steps:
- name: GHRS
uses: jgehrcke/github-repo-stats@RELEASE
with:
# Define the target repository, the repo to fetch
# stats for and to generate the report for.
# Leave this undefined when stats repository
# and data repository should be the same.
repository: stack-of-tasks/eigenpy
# Required token privileges: Can read the target
# repo, and can push to the repository this
# workflow file lives in (to store data and
# the report files).
ghtoken: ${{ secrets.GHRS_SOT_GITHUB_API_TOKEN }}
j3:
name: stats tsid
runs-on: ubuntu-latest
steps:
- name: GHRS
uses: jgehrcke/github-repo-stats@RELEASE
with:
# Define the target repository, the repo to fetch
# stats for and to generate the report for.
# Leave this undefined when stats repository
# and data repository should be the same.
repository: stack-of-tasks/tsid
# Required token privileges: Can read the target
# repo, and can push to the repository this
# workflow file lives in (to store data and
# the report files).
ghtoken: ${{ secrets.GHRS_SOT_GITHUB_API_TOKEN }}