Skip to content

Commit 22ab099

Browse files
committed
add description to actions and replace reference to api-key with auth token
1 parent 5506b9b commit 22ab099

File tree

8 files changed

+11
-4
lines changed

8 files changed

+11
-4
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,8 @@ jobs:
2929
"use-pro": "true",
3030
}
3131
env:
32-
LOCALSTACK_API_KEY: ${{ secrets.LOCALSTACK_API_KEY }}
32+
# intentially left `LOCALSTACK_API_KEY` as env here, to ensure the fallback still works for old version
33+
LOCALSTACK_API_KEY: ${{ secrets.LOCALSTACK_API_KEY }}
3334
GH_ACTION_VERSION: ${{ (github.event_name == 'pull_request' && github.event.pull_request.head.sha) || github.ref_name }}
3435

3536
- name: Run Version Test Against LocalStack

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ inputs:
1616
required: true
1717
default: 'true'
1818
use-pro:
19-
description: 'Whether to use LocalStack Pro (requires a valid API key)'
19+
description: 'Whether to use LocalStack Pro (requires a valid CI Auth Token)'
2020
required: false
2121
default: 'false'
2222
configuration:

cloud-pods/action.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
name: 'Save/Load a LocalStack Cloud Pod'
2+
description: 'Save or load a LocalStack Cloud Pod'
23

34
inputs:
45
name:

finish/action.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
name: Finish CI Build
2+
description: Finish CI Build
23

34
inputs:
45
github-token:

local/action.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
name: 'Save/Load LocalStack state'
2+
description: 'Save or load LocalStack state'
23

34
inputs:
45
name:

prepare/action.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
name: Start CI Build
2+
description: Start CI Build
23

34
inputs:
45
github-token:

startup/action.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
name: 'Start up Localstack'
2+
description: 'Starts up Localstack'
23

34
inputs:
45
image-tag:
@@ -10,7 +11,7 @@ inputs:
1011
required: true
1112
default: 'true'
1213
use-pro:
13-
description: 'Whether to use LocalStack Pro (requires a valid API key)'
14+
description: 'Whether to use LocalStack Pro (requires a valid CI Auth Token)'
1415
required: false
1516
default: 'false'
1617
configuration:
@@ -62,7 +63,7 @@ runs:
6263
run: |
6364
if [ "$USE_PRO" = true ]; then
6465
if [ "x$LOCALSTACK_AUTH_TOKEN" = "x" -o "x$LOCALSTACK_API_KEY" = "x" ]; then
65-
echo "WARNING: LocalStack API key not detected, please verify your configuration..."
66+
echo "WARNING: LocalStack Auth Token not detected, please verify your configuration..."
6667
fi
6768
CONFIGURATION="DNS_ADDRESS=127.0.0.1 ${CONFIGURATION}"
6869
IMAGE_NAME="${IMAGE_NAME:-localstack/localstack-pro:${IMAGE_TAG}}"

tools/action.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
name: 'Install Localstack tools'
2+
description: 'Installs `localstack` and optionally `awslocal` CLI'
23

34
inputs:
45
install-awslocal:

0 commit comments

Comments
 (0)