Skip to content

Commit

Permalink
release v8.0.2 (#2271)
Browse files Browse the repository at this point in the history
* v8.0.2
  • Loading branch information
k80bowman committed Mar 20, 2023
1 parent 3988765 commit 25b54fa
Show file tree
Hide file tree
Showing 119 changed files with 4,864 additions and 3,096 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Expand Up @@ -3,6 +3,22 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [8.0.2](https://github.com/heroku/cli/compare/v7.69.1...v8.0.2) (2023-03-16)

**Note:** Version bump only for package heroku





## [7.69.2](https://github.com/heroku/cli/compare/v7.69.1...v7.69.2) (2023-03-16)

**Note:** Version bump only for package heroku





## [7.69.1](https://github.com/heroku/cli/compare/v7.69.0...v7.69.1) (2023-03-09)

**Note:** Version bump only for package heroku
Expand Down
54 changes: 35 additions & 19 deletions docs/access.md
Expand Up @@ -14,12 +14,15 @@ list who has access to an app

```
USAGE
$ heroku access
$ heroku access -a <value> [--json] [-r <value>]
OPTIONS
-a, --app=app (required) app to run command against
-r, --remote=remote git remote of app to use
--json output in json format
FLAGS
-a, --app=<value> (required) app to run command against
-r, --remote=<value> git remote of app to use
--json output in json format
DESCRIPTION
list who has access to an app
```

## `heroku access:add EMAIL`
Expand All @@ -28,15 +31,20 @@ add new users to your app

```
USAGE
$ heroku access:add EMAIL
$ heroku access:add EMAIL -a <value> [-p <value>] [-r <value>]
FLAGS
-a, --app=<value> (required) app to run command against
-p, --permissions=<value> list of permissions comma separated
-r, --remote=<value> git remote of app to use
DESCRIPTION
add new users to your app
OPTIONS
-a, --app=app (required) app to run command against
-p, --permissions=permissions list of permissions comma separated
-r, --remote=remote git remote of app to use
EXAMPLES
$ heroku access:add user@email.com --app APP # add a collaborator to your app
$ heroku access:add user@email.com --app APP --permissions deploy,manage,operate # permissions must be comma separated
```

Expand All @@ -46,11 +54,15 @@ remove users from a team app

```
USAGE
$ heroku access:remove EMAIL
$ heroku access:remove EMAIL -a <value> [-r <value>]
FLAGS
-a, --app=<value> (required) app to run command against
-r, --remote=<value> git remote of app to use
DESCRIPTION
remove users from a team app
OPTIONS
-a, --app=app (required) app to run command against
-r, --remote=remote git remote of app to use
EXAMPLES
$ heroku access:remove user@email.com --app APP
Expand All @@ -62,12 +74,16 @@ update existing collaborators on an team app

```
USAGE
$ heroku access:update EMAIL
$ heroku access:update EMAIL -a <value> [-p <value>] [-r <value>]
FLAGS
-a, --app=<value> (required) app to run command against
-p, --permissions=<value> comma-delimited list of permissions to update (deploy,manage,operate)
-r, --remote=<value> git remote of app to use
DESCRIPTION
update existing collaborators on an team app
OPTIONS
-a, --app=app (required) app to run command against
-p, --permissions=permissions comma-delimited list of permissions to update (deploy,manage,operate)
-r, --remote=remote git remote of app to use
EXAMPLES
$ heroku access:update user@email.com --app APP --permissions deploy,manage,operate
Expand Down

0 comments on commit 25b54fa

Please sign in to comment.