rspm edit github-app

Command to edit GitHub App credentials

Terminal
rspm edit github-app [flags]

Examples

Terminal
  # Edit GitHub App credential
  rspm edit github-app --name=[credential name] --client-id=[new-client-id] --installation-id=[new-installation-id] --private-key=[new-private-key-pem]
  
  # Edit with private key from file
  rspm edit github-app --name=[credential name] --client-id=[new-client-id] --installation-id=[new-installation-id] --private-key="$(cat /path/to/new-private-key.pem)"

Options

Terminal
      --client-id string         The GitHub Client ID for the GitHub App credential.
  -h, --help                     help for github-app
      --installation-id string   The GitHub App Installation ID for the GitHub App credential.
      --name string              The name of the GitHub App credential to edit.
      --private-key string       The GitHub App private key (PEM format) for the GitHub App credential.

Options inherited from parent commands

Terminal
  -a, --address string             The address of the remote server. If not specified, the PACKAGEMANAGER_ADDRESS environment variable is used.
  -c, --config string              Path to config file
      --insecure-ssl-skip-verify   If true, skip SSL certificate validation. This reduces the security that SSL normally provides.
  -o, --output-format string       Specify the output format 'human' for human-readable output or 'json' for JSON-encoded output. (default "human")
  -v, --verbose                    Provide additional output
Back to top