diff --git a/.github/workflows/docker-build-images.md b/.github/workflows/docker-build-images.md index 9364ad75..a126af52 100644 --- a/.github/workflows/docker-build-images.md +++ b/.github/workflows/docker-build-images.md @@ -136,14 +136,14 @@ jobs: # Environment variable name(s) to pass GitHub token generated by GitHub App. # Can be a multiline string list. # This is useful to pass a generated token to the build, as it is not possible to share generated secrets between jobs. - # Needs input `build-secret-github-app-id` and secret `build-secret-github-app-key`. + # Needs input `build-secret-github-app-client-id` and secret `build-secret-github-app-key`. # # Default: `GITHUB_APP_TOKEN` build-secret-github-app-token-env: GITHUB_APP_TOKEN - # GitHub App ID to generate GitHub token to be passed as build secret env. + # GitHub App client ID to generate GitHub token to be passed as build secret env. # See https://github.com/actions/create-github-app-token. - build-secret-github-app-id: "" + build-secret-github-app-client-id: "" # The owner of the GitHub App installation. # See https://github.com/actions/create-github-app-token. @@ -210,8 +210,8 @@ jobs: | **`build-secret-github-app-token-env`** | Environment variable name(s) to pass GitHub token generated by GitHub App. | **false** | **string** | `GITHUB_APP_TOKEN` | | | Can be a multiline string list. | | | | | | This is useful to pass a generated token to the build, as it is not possible to share generated secrets between jobs. | | | | -| | Needs input `build-secret-github-app-id` and secret `build-secret-github-app-key`. | | | | -| **`build-secret-github-app-id`** | GitHub App ID to generate GitHub token to be passed as build secret env. | **false** | **string** | - | +| | Needs input `build-secret-github-app-client-id` and secret `build-secret-github-app-key`. | | | | +| **`build-secret-github-app-client-id`** | GitHub App client ID to generate GitHub token to be passed as build secret env. | **false** | **string** | - | | | See . | | | | | **`build-secret-github-app-owner`** | The owner of the GitHub App installation. | **false** | **string** | `${{ github.repository_owner }}` | | | See . | | | | diff --git a/actions/helm/generate-docs/README.md b/actions/helm/generate-docs/README.md index 7e636129..2645008a 100644 --- a/actions/helm/generate-docs/README.md +++ b/actions/helm/generate-docs/README.md @@ -53,9 +53,9 @@ Mainly using [losisin/helm-docs-github-action](https://github.com/losisin/helm-d # Default: `${{ github.token }}` github-token: ${{ github.token }} - # GitHub App ID to generate GitHub token in place of github-token. + # GitHub App client ID to generate GitHub token in place of github-token. # See https://github.com/actions/create-github-app-token. - github-app-id: "" + github-app-client-id: "" # GitHub App private key to generate GitHub token in place of github-token. # See https://github.com/actions/create-github-app-token. @@ -68,19 +68,19 @@ Mainly using [losisin/helm-docs-github-action](https://github.com/losisin/helm-d ## Inputs -| **Input** | **Description** | **Required** | **Default** | -| ----------------------- | ------------------------------------------------------------------------- | ------------ | ------------------------- | -| **`working-directory`** | Working directory | **false** | `${{ github.workspace }}` | -| **`values-file`** | Path to the values file to use for generating the documentation. | **false** | - | -| | See . | | | -| **`github-token`** | GitHub Token to create and merge pull request. | **false** | `${{ github.token }}` | -| | Permissions: | | | -| | - contents: write | | | -| | - pull-requests: write | | | -| **`github-app-id`** | GitHub App ID to generate GitHub token in place of github-token. | **false** | - | -| | See . | | | -| **`github-app-key`** | GitHub App private key to generate GitHub token in place of github-token. | **false** | - | -| | See . | | | +| **Input** | **Description** | **Required** | **Default** | +| -------------------------- | ------------------------------------------------------------------------- | ------------ | ------------------------- | +| **`working-directory`** | Working directory | **false** | `${{ github.workspace }}` | +| **`values-file`** | Path to the values file to use for generating the documentation. | **false** | - | +| | See . | | | +| **`github-token`** | GitHub Token to create and merge pull request. | **false** | `${{ github.token }}` | +| | Permissions: | | | +| | - contents: write | | | +| | - pull-requests: write | | | +| **`github-app-client-id`** | GitHub App client ID to generate GitHub token in place of github-token. | **false** | - | +| | See . | | | +| **`github-app-key`** | GitHub App private key to generate GitHub token in place of github-token. | **false** | - | +| | See . | | |