github.com/kubri/kubri@v0.5.1-0.20240317001612-bda2aaef967e/website/docs/configuration/source/github.md (about)

     1  ---
     2  sidebar_position: 1
     3  sidebar_label: GitHub
     4  ---
     5  
     6  # GitHub Source
     7  
     8  Automatically gets your GitHub releases to generate your repositories.
     9  
    10  ## Environment variables
    11  
    12  | Name           | Description                                                                                    |
    13  | -------------- | ---------------------------------------------------------------------------------------------- |
    14  | `GITHUB_TOKEN` | A personal access token for accessing your GitHub releases. Required for private repositories. |
    15  
    16  ## Configuration
    17  
    18  | Name    | Description                                     |
    19  | ------- | ----------------------------------------------- |
    20  | `type`  | Must be `github`.                               |
    21  | `owner` | Repository owner i.e. username or organisation. |
    22  | `repo`  | Repository name.                                |
    23  
    24  ## Example
    25  
    26  ```yaml
    27  source:
    28    type: github
    29    owner: my-org
    30    repo: my-repo
    31  ```