Skip to content

Commit

Permalink
Create github-repo-stats-sot.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
pgraverdy authored May 20, 2024
0 parents commit 2448fee
Showing 1 changed file with 61 additions and 0 deletions.
61 changes: 61 additions & 0 deletions .github/workflows/github-repo-stats-sot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,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 }}

0 comments on commit 2448fee

Please sign in to comment.