Skip to content

Commit

Permalink
docs: fix app
Browse files Browse the repository at this point in the history
  • Loading branch information
UncleVic committed Apr 20, 2022
1 parent 5e2f906 commit b28e750
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,13 +41,13 @@ More information is available on Bright’s:

### `api_token`

**Required**. Your Bright API authorization token (key). You can generate it in the **Organization** section in [the Bright app](https://app.brightsec.com/login). Find more information [here](https://docs.brightsec.com/docs/manage-your-organization#manage-organization-apicli-authentication-tokens).
**Required**. Your Bright API authorization token (key). You can generate it in the **Organization** section in [the Bright app](https://app.neuralegion.com/login). Find more information [here](https://docs.brightsec.com/docs/manage-your-organization#manage-organization-apicli-authentication-tokens).

_Example:_ `api_token: ${{ secrets.NEURALEGION_TOKEN }}`

### `scan`

**Required**. ID of an existing scan to be restarted. You can get the scan ID in the Scans section in [the Bright app](https://app.brightsec.com/login).
**Required**. ID of an existing scan to be restarted. You can get the scan ID in the Scans section in [the Bright app](https://app.neuralegion.com/login).

_Example:_ `scan: ${{ steps.start.outputs.id }}`

Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ inputs:
description: 'Scan ID to wait for'
required: true
hostname:
description: 'Hostname. Default is app.brightsec.com'
description: 'Hostname. Default is app.neuralegion.com'
required: false
wait_for:
description: 'Wait for first issue: *any*, *medium*, *high*'
Expand Down
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ const interval = 20000;
const timeout = 1000 * Number(core.getInput('timeout'));

const baseUrl = (
hostname ? `https://${hostname}` : 'https://app.brightsec.com'
hostname ? `https://${hostname}` : 'https://app.neuralegion.com'
).replace(/\/$/, '');

axiosRetry(axios, { retries: 3 });
Expand Down

0 comments on commit b28e750

Please sign in to comment.