Skip to content
Merged
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
10 changes: 10 additions & 0 deletions .github/actionlint.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# actionlint validates action inputs against a bundled schema snapshot.
# The snapshot in the pinned actionlint version predates the app-id -> client-id
# rename in actions/create-github-app-token, so it wrongly flags client-id as
# unknown and app-id as required. The live action supports client-id (app-id is
# deprecated). Remove this ignore once actionlint's bundled data catches up.
paths:
.github/workflows/dispatch-release.yaml:
ignore:
- 'input "client-id" is not defined in action "actions/create-github-app-token'
- 'missing input "app-id" which is required by action "actions/create-github-app-token'
2 changes: 1 addition & 1 deletion .github/workflows/dispatch-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ jobs:
id: generate_token
uses: 'actions/create-github-app-token@v3'
with:
app-id: ${{ secrets.ACTIONS_RELEASE_APP_ID }}
client-id: ${{ secrets.ACTIONS_RELEASE_CLIENT_ID }}
private-key: ${{ secrets.ACTIONS_RELEASE_APP_PRIVATE_KEY }}

- name: 'Create branch and Pull Request'
Expand Down
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