Team view across different repositories? #51
-
Manuel, thanks a lot for this awesome nifty tool. Is there a way to consolidate stats across different repositories (not necessarily all of an organization but a certain set of repositories across the org)? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hi @3pilef, thanks for your comments! Yes, you can use the For example: name: Pull Request Stats
on:
pull_request:
types: [opened]
jobs:
stats:
runs-on: ubuntu-latest
steps:
- name: Run pull request stats
uses: flowwer-dev/pull-request-stats@master
with:
repositories: 'celonis/repo1,celonis/repo2,celonis/repo3'
token: ${{ secrets.ADD_A_PERSONAL_ACCESS_TOKEN }}
The only problem is you can't post multiple stats tables in the same repo. You'd need to configure each group of stats across multiple repositories. Please tell me if this work for you or there's something further I can help with. |
Beta Was this translation helpful? Give feedback.
Hi @3pilef, thanks for your comments!
Yes, you can use the
repositories
option instead oforganization
and send a comma-separated list of the repositories you need.For example:
The only problem is you can't post multiple sta…