Skip to content
Closed
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
4 changes: 3 additions & 1 deletion .github/workflows/universal_workflow_light.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -343,8 +343,10 @@ jobs:

- name: 'Run composer for each module'
shell: bash
env:
GH_TOKEN: ${{ github.token }}
run: |
git clone --depth=1 --quiet --branch v2.0.0 https://github.com/joernott/load_testplan.git load_testplan
git clone --depth=1 --quiet --branch v2.0.0 "https://x-access-token:${GH_TOKEN}@github.com/joernott/load_testplan.git" load_testplan
LOAD_TESTPLAN=$(find ./load_testplan -iname 'main-linux-amd64-*')
chmod a+x "${LOAD_TESTPLAN}"
PREFIXES=$(echo '${{steps.iltp.outputs.runscript_matrix_script}}'|tr ',' '\n'|tr -d '[]" '|sed -e 's|-|_|g' -e 's|:.*||'|sort|uniq)
Expand Down
7 changes: 6 additions & 1 deletion prepare_shop/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,12 @@ runs:
REF='${{ inputs.git_sdk_ref }}'
git init
git config advice.detachedHead false
git remote add origin https://github.com/${{ inputs.git_sdk_repository }}.git
if [ -n "${{ inputs.enterprise_github_token }}" ]; then
URL="https://oxidci:${{ inputs.enterprise_github_token }}@github.com/${{ inputs.git_sdk_repository }}.git"
else
URL="https://github.com/${{ inputs.git_sdk_repository }}.git"
fi
git remote add origin "${URL}"
git -c protocol.version=2 fetch \
--no-tags --prune --no-recurse-submodules \
--filter=blob:none --depth=1 \
Expand Down
Loading