Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
571f254
feat: add dynamic startup
lakkeger May 14, 2024
23c69e1
feat: add new variables and logic
lakkeger May 15, 2024
4c796da
feat: Add local state management
lakkeger May 15, 2024
5f892cb
feat(startup): add warning if use-pro used but no key provided
lakkeger May 15, 2024
f97de5c
feat(startup): add skip wait
lakkeger May 15, 2024
39f4048
style(startup): remove unnecessary quotes
lakkeger May 15, 2024
36ffc44
feat: add skips
lakkeger May 15, 2024
b413119
feat(tools): add action to install tools
lakkeger May 15, 2024
0fc578e
feat(ci): add local state test
lakkeger May 15, 2024
98771bf
docs: Update README.md
lakkeger May 16, 2024
bb86923
fix(cloud-pods): ensure pod load not prompts for user input
lakkeger May 16, 2024
0165a01
feat(preview): allow env variables to control pod load
lakkeger May 16, 2024
63a7484
chore(ci): exclude pipeline trigger for docs
lakkeger May 16, 2024
e188543
feat: add app preview management
lakkeger May 16, 2024
c5cab2f
docs: add app preview options
lakkeger May 16, 2024
da81a10
docs: add default value for include-preview
lakkeger May 16, 2024
4e0068a
feat: tweak logic for preview ci
lakkeger May 16, 2024
f046bca
fix: fix sub-action versions
lakkeger May 16, 2024
8ef5699
fix(startup): fix test condition syntax
lakkeger May 16, 2024
a1b36da
fix(preview): fix variable expansions
lakkeger May 17, 2024
1a99576
fix(ci): update ephemeral ci with version fix
lakkeger May 17, 2024
4b05efe
Merge branch 'main' into refactor_default_action
lakkeger May 17, 2024
0f2479b
fix(ci): update ephemeral ci with version fix
lakkeger May 17, 2024
9b85434
Merge branch 'refactor_default_action' of github.com:localstack/setup…
lakkeger May 17, 2024
28455d4
docs: add ephemeral examples
lakkeger May 17, 2024
2c432c9
docs: fix nits for docs, add preview-cmd to preview for better unders…
lakkeger May 29, 2024
100e48b
feat: change order of preview and state management for possible state…
lakkeger May 29, 2024
2a0c82f
refactor: change env variable names
lakkeger May 29, 2024
5b47bda
refactor(ci): refactor ternary logic
lakkeger May 29, 2024
a835beb
fix: save state without skip-start switch
lakkeger May 30, 2024
6b8e991
refactor: rename preview to ephemeral/startup, rename related options
lakkeger May 30, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,9 @@ inputs:
runs:
using: "composite"
steps:
- run: echo "$(ls -d ./../../_actions/LocalStack/setup-localstack/* | grep -v completed)"
shell: bash

- run: echo "action-root=$(ls -d ./../../_actions/LocalStack/setup-localstack/* | grep -v completed)" >> $GITHUB_ENV
shell: bash

Expand Down
12 changes: 9 additions & 3 deletions preview/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,18 @@ inputs:
runs:
using: composite
steps:
- run: echo "action-root=$(ls -d ./../../_actions/LocalStack/setup-localstack/* | grep -v completed)" >> $GITHUB_ENV
shell: bash

- name: Initial PR comment
# TODO: potentially replace with Action version number over time
uses: LocalStack/setup-localstack/prepare@main
if: inputs.github-token
uses: jenseng/dynamic-uses@v1
with:
github-token: ${{ inputs.github-token }}
uses: ${{ env.action-root }}/prepare
with: |-
{
"github-token": "${{ inputs.github-token }}"
}

- name: Download PR artifact
uses: actions/download-artifact@v3
Expand Down