From 56cde391de924b1685086cbed2b9093970354eaa Mon Sep 17 00:00:00 2001 From: "anthropic-code-agent[bot]" <242468646+Claude@users.noreply.github.com> Date: Thu, 14 May 2026 05:45:20 +0000 Subject: [PATCH 1/2] Migrate store.yml workflow to use composite action - Replace reusable workflow with composite action - Use shopware/github-actions/store-release@main composite action - Add explicit checkout step required for composite actions - Keep same inputs: extensionName, clientId, clientSecret, ghToken Agent-Logs-Url: https://github.com/FriendsOfShopware/FroshTools/sessions/67e9e86a-8a0e-4372-8bcd-342eb6bf28d3 Co-authored-by: shyim <6224096+shyim@users.noreply.github.com> --- .github/workflows/store.yml | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) diff --git a/.github/workflows/store.yml b/.github/workflows/store.yml index a39dc52d..d8977143 100644 --- a/.github/workflows/store.yml +++ b/.github/workflows/store.yml @@ -7,10 +7,15 @@ on: jobs: build: - uses: shopware/github-actions/.github/workflows/store-release.yml@main - with: - extensionName: ${{ github.event.repository.name }} - secrets: - clientId: ${{ secrets.SHOPWARE_CLI_ACCOUNT_CLIENT_ID }} - clientSecret: ${{ secrets.SHOPWARE_CLI_ACCOUNT_CLIENT_SECRET }} - ghToken: ${{ secrets.GITHUB_TOKEN }} + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + + - name: Release Extension to Store + uses: shopware/github-actions/store-release@main + with: + extensionName: ${{ github.event.repository.name }} + clientId: ${{ secrets.SHOPWARE_CLI_ACCOUNT_CLIENT_ID }} + clientSecret: ${{ secrets.SHOPWARE_CLI_ACCOUNT_CLIENT_SECRET }} + ghToken: ${{ secrets.GITHUB_TOKEN }} From 33209befc34cac8148c8625b09f84f2662112f31 Mon Sep 17 00:00:00 2001 From: "anthropic-code-agent[bot]" <242468646+Claude@users.noreply.github.com> Date: Thu, 14 May 2026 05:48:27 +0000 Subject: [PATCH 2/2] Remove redundant checkout step from store.yml The shopware/github-actions/store-release@main composite action handles checkout internally via its build-zip sub-action unless skipCheckout is explicitly set to true. Agent-Logs-Url: https://github.com/FriendsOfShopware/FroshTools/sessions/0e788586-94e6-4bea-9ff9-56a7afe6f16b Co-authored-by: shyim <6224096+shyim@users.noreply.github.com> --- .github/workflows/store.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/.github/workflows/store.yml b/.github/workflows/store.yml index d8977143..624ad9db 100644 --- a/.github/workflows/store.yml +++ b/.github/workflows/store.yml @@ -9,9 +9,6 @@ jobs: build: runs-on: ubuntu-latest steps: - - name: Checkout - uses: actions/checkout@v4 - - name: Release Extension to Store uses: shopware/github-actions/store-release@main with: