Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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 .github/workflows/upgrade.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ jobs:
uses: actions/[email protected]
with:
ref: refs/tags/${{ matrix.version-tags }}
persist-credentials: false

- name: Setup asdf and install dependencies
id: install-deps
Expand All @@ -53,6 +54,8 @@ jobs:

- name: Checkout Code Under Test
uses: actions/[email protected]
with:
persist-credentials: false

- name: Upgrade Orchestrator
timeout-minutes: 90
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/virtual-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,8 +80,10 @@ jobs:

- name: Calculate only_design_proposals
id: only-design-proposals
env:
CHANGED_FILES: ${{ steps.check-files.outputs.changed_files }}
run: |
files="${{ steps.check-files.outputs.changed_files }}"
files="$CHANGED_FILES"
only_design=true
# Remove brackets and quotes, then split on comma
clean_files=$(echo "$files" | sed 's/\[//;s/\]//;s/"//g')
Expand Down
Loading