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)? |
Answered by
manuelmhtr
Sep 30, 2022
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. |
1 reply
Answer selected by
manuelmhtr
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi @3pilef, thanks for your comments!
Yes, you can use the
repositoriesoption instead oforganizationand send a comma-separated list of the repositories you need.For example:
The only problem is you can't post multiple sta…