File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -262,6 +262,8 @@ jobs:
262
262
echo "IMAGE_TAG=${IMAGE_TAG}" >> "$GITHUB_OUTPUT"
263
263
echo "OUTPUT_IMAGE=${{ env.IMAGE_REGISTRY}}:${{ inputs.target }}-${IMAGE_TAG}" >> "$GITHUB_OUTPUT"
264
264
265
+ echo "SANITIZED_PLATFORM=$(echo "${{ inputs.platform }}" | sed 's/[^a-zA-Z0-9._-]/_/g')" >> "$GITHUB_OUTPUT"
266
+
265
267
# endregion
266
268
267
269
# region Image build
@@ -686,7 +688,7 @@ jobs:
686
688
- uses : actions/upload-artifact@v4
687
689
if : ${{ !cancelled() && fromJson(inputs.github).event_name == 'pull_request' && contains(inputs.target, 'codeserver') }}
688
690
with :
689
- name : " ${{ inputs.target }}_playwright-report"
691
+ name : " ${{ inputs.target }}_${{ steps.calculated_vars.outputs.SANITIZED_PLATFORM }} _playwright-report"
690
692
path : tests/browser/playwright-report/
691
693
retention-days : 30
692
694
Original file line number Diff line number Diff line change
1
+ ---
1
2
name : Insta Merge Konflux PRs
2
3
3
- on :
4
+ on : # yamllint disable-line rule:truthy
4
5
pull_request :
5
6
paths :
6
7
- manifests/base/params-latest.env
25
26
env :
26
27
GITHUB_TOKEN : ${{ github.token }}
27
28
run : |
28
- gh pr merge --merge --admin ${{ github.event.pull_request.html_url }}
29
+ gh pr merge --merge --admin ${{ github.event.pull_request.html_url }}
You can’t perform that action at this time.
0 commit comments