2.0.4 • Published 3 years ago

@neilbmclaughlin/github-secrets v2.0.4

Weekly downloads
155
License
MIT
Repository
github
Last release
3 years ago

CI NPM Publish NPM Version

Github Secrets

A CLI utility to populate github secrets from a line based text file or stream

Note: version 2.0.0 is a breaking change and no longer works by default with .env format files. See examples below on how to do this in a unix environment

Installation

npm install -g @neilbmclaughlin/github-secrets

Usage

❯ github-secrets --help
github-secrets <cmd> [options]

Commands:
  github-secrets put [filename]     upsert repository secrets from either a file or stdin
  github-secrets delete [filename]  delete repository secrets from either a file or stdin

Options:
  --help     Show help            [boolean]
  --version  Show version number  [boolean]

Examples:
  Put secrets from a file of space separated name-value pairs:
  github-secrets put -a {token} -o {owner} -r {repo} test/data/env2
  Put a single secret:
  echo "foo bar" | github-secrets put -a {token} -o {owner} -r {repo}
  Put secrets from an .env format file with comments filtered out:
  egrep -v '^[ ]*#' test/data/env | github-secrets put -a {token} -o {owner} -r {repo} -s= test/data/env
  Delete secrets from a file:
  cut -f1 -d' ' test/data/env2 | github-secrets delete -a {access} -o {owner} -r {repo}
  Put secrets from a URL (which should not be public!):
  curl -s https://raw.githubusercontent.com/neilbmclaughlin/github-secrets/main/test/data/env2 | github-secrets put -a {token} -o {owner} -r {repo}

Options can also be specified in env vars prepended with 'GITHUB_SECRETS' (e.g. GITHUB_SECRETS_ACCESS_TOKEN, GITHUB_SECRETS_OWNER)

Put Secrets

❯ github-secrets put --help
github-secrets put [filename]

upsert repository secrets from either a file or stdin

Options:
      --help          Show help                                        [boolean]
      --version       Show version number                              [boolean]
  -s, --separator     key-value pair separator                    [default: " "]
  -a, --access-token  Github personal access token                    [required]
  -o, --owner         Github repository owner (defaults to access token owner)
  -r, --repository    Github repository
❯

Delete Secrets

❯ github-secrets delete --help
github-secrets delete [filename]

delete repository secrets from either a file or stdin

Options:
      --help          Show help                                        [boolean]
      --version       Show version number                              [boolean]
  -a, --access-token  Github personal access token                    [required]
  -o, --owner         Github repository owner (defaults to access token owner)
  -r, --repository    Github repository
2.0.3

3 years ago

2.0.4

3 years ago

2.0.2

3 years ago

1.1.5

3 years ago

2.0.0

3 years ago

1.1.1

3 years ago

1.1.0

3 years ago

1.1.4

3 years ago

1.1.3

3 years ago

1.1.2

3 years ago

1.0.0

3 years ago

0.0.7

3 years ago

0.0.6

3 years ago

0.0.5

3 years ago

0.0.4

3 years ago

0.0.2

3 years ago

0.0.1

3 years ago