Setting up a GitHub repository

  1. Install Repo Profiler Github App from Github Marketplace in your org/personal account. Make sure you have the permissions required to install the app.
  2. Add this code in a file named "repo-profiler.yml" present on the following path - ".github/workflows/repo-profiler.yml" inside the repository.
    on:
      repository_dispatch:
        types: repo_profile_execution
    jobs:
      profile:
        runs-on: ubuntu-22.04
        steps:
          - name: Checkout
            uses: actions/checkout@v3
            with:
              fetch-depth: 0
          - name: Repository Profiler
            uses: Alokit-Innovations/repo-profiler@main