|
1 | 1 | # Measure InnerSource tool |
2 | 2 |
|
| 3 | +> [!IMPORTANT] |
| 4 | +> This repository has moved from `github/measure-innersource` to `github-community-projects/measure-innersource`. |
| 5 | +> Please update your git remote: |
| 6 | +> |
| 7 | +> ```shell |
| 8 | +> git remote set-url origin git@github.com:github-community-projects/measure-innersource.git |
| 9 | +> ``` |
| 10 | +> |
| 11 | +> Note: replace `origin` with the name of your remote if it's different. |
| 12 | +
|
3 | 13 | This tool measures InnerSource collaboration in a given repository by analyzing issues, pull requests, and code contributions. It helps organizations track and improve their InnerSource adoption by quantifying the collaboration between different teams and departments. |
4 | 14 |
|
5 | 15 | ## What is InnerSource? |
@@ -358,7 +368,7 @@ Below is an example of the generated InnerSource report: |
358 | 368 |
|
359 | 369 | ## Support |
360 | 370 |
|
361 | | -If you need support using this project or have questions about it, please [open up an issue in this repository](https://github.com/github/measure-innersource/issues). Requests made directly to GitHub staff or support team will be redirected here to open an issue. GitHub SLA's and support/services contracts do not apply to this repository. |
| 371 | +If you need support using this project or have questions about it, please [open up an issue in this repository](https://github.com/github-community-projects/measure-innersource/issues). Requests made directly to GitHub staff or support team will be redirected here to open an issue. GitHub SLA's and support/services contracts do not apply to this repository. |
362 | 372 |
|
363 | 373 | ### OSPO GitHub Actions as a Whole |
364 | 374 |
|
@@ -393,7 +403,7 @@ jobs: |
393 | 403 | uses: actions/checkout@v4 |
394 | 404 |
|
395 | 405 | - name: Measure InnerSource |
396 | | - uses: github/measure-innersource@v1 |
| 406 | + uses: github-community-projects/measure-innersource@v2 |
397 | 407 | env: |
398 | 408 | REPOSITORY: "owner/repo" |
399 | 409 | GH_TOKEN: ${{ secrets.GH_TOKEN }} |
@@ -423,7 +433,7 @@ jobs: |
423 | 433 | uses: actions/checkout@v4 |
424 | 434 |
|
425 | 435 | - name: Measure InnerSource |
426 | | - uses: github/measure-innersource@v1 |
| 436 | + uses: github-community-projects/measure-innersource@v2 |
427 | 437 | env: |
428 | 438 | REPOSITORY: "owner/repo" |
429 | 439 | GH_APP_ID: ${{ secrets.APP_ID }} |
@@ -454,7 +464,7 @@ jobs: |
454 | 464 | uses: actions/checkout@v4 |
455 | 465 |
|
456 | 466 | - name: Measure InnerSource |
457 | | - uses: github/measure-innersource@v1 |
| 467 | + uses: github-community-projects/measure-innersource@v2 |
458 | 468 | env: |
459 | 469 | REPOSITORY: "internal-org/critical-service" |
460 | 470 | GH_TOKEN: ${{ secrets.GHE_TOKEN }} |
@@ -484,7 +494,7 @@ jobs: |
484 | 494 | uses: actions/checkout@v4 |
485 | 495 |
|
486 | 496 | - name: Measure InnerSource |
487 | | - uses: github/measure-innersource@v1 |
| 497 | + uses: github-community-projects/measure-innersource@v2 |
488 | 498 | env: |
489 | 499 | REPOSITORY: "bigcorp/massive-monorepo" |
490 | 500 | GH_TOKEN: ${{ secrets.GH_TOKEN }} |
@@ -521,7 +531,7 @@ jobs: |
521 | 531 | uses: actions/checkout@v4 |
522 | 532 |
|
523 | 533 | - name: Measure InnerSource for ${{ matrix.repository }} |
524 | | - uses: github/measure-innersource@v1 |
| 534 | + uses: github-community-projects/measure-innersource@v2 |
525 | 535 | env: |
526 | 536 | REPOSITORY: ${{ matrix.repository }} |
527 | 537 | GH_TOKEN: ${{ secrets.GH_TOKEN }} |
@@ -550,7 +560,7 @@ jobs: |
550 | 560 | uses: actions/checkout@v4 |
551 | 561 |
|
552 | 562 | - name: Measure InnerSource |
553 | | - uses: github/measure-innersource@v1 |
| 563 | + uses: github-community-projects/measure-innersource@v2 |
554 | 564 | env: |
555 | 565 | REPOSITORY: "org/repository" |
556 | 566 | GH_TOKEN: ${{ secrets.GH_TOKEN }} |
@@ -595,7 +605,7 @@ This action can be configured to authenticate with GitHub App Installation or Pe |
595 | 605 | | `RATE_LIMIT_BYPASS` | False | `false` | If set to `true`, the rate limit will be bypassed. This is useful if being run on an local GitHub server with rate limiting disabled. | |
596 | 606 | | `OUTPUT_FILE` | False | `innersource_report.md` | Output filename. | |
597 | 607 | | `REPORT_TITLE` | False | `"InnerSource Report"` | Title to have on the report issue. | |
598 | | -| `REPOSITORY` | True | `""` | The name of the repository you are trying to measure. Format `owner/repo` ie. `github/measure-innersource` | |
| 608 | +| `REPOSITORY` | True | `""` | The name of the repository you are trying to measure. Format `owner/repo` ie. `github-community-projects/measure-innersource` | |
599 | 609 | | `CHUNK_SIZE` | False | `100` | Number of items to process at once when fetching data. Increasing can improve performance but uses more memory. Minimum value is 10. | |
600 | 610 | | `OWNING_TEAM` | False | `""` | Comma-separated list of GitHub usernames that own the repository. Overrides the built-in team determination algorithm. Example: `alice,bob,charlie` | |
601 | 611 |
|
@@ -826,7 +836,7 @@ The tool automatically splits large files, but you can: |
826 | 836 |
|
827 | 837 | If you continue to experience issues: |
828 | 838 |
|
829 | | -1. **Check Existing Issues**: Search the [GitHub Issues](https://github.com/github/measure-innersource/issues) for similar problems |
| 839 | +1. **Check Existing Issues**: Search the [GitHub Issues](https://github.com/github-community-projects/measure-innersource/issues) for similar problems |
830 | 840 | 2. **Create a New Issue**: Include: |
831 | 841 | - Error messages (sanitized of sensitive information) |
832 | 842 | - Configuration details (without secrets) |
|
0 commit comments