From 0c9f488421c5cba7aa196c8612be2d2025f6c62d Mon Sep 17 00:00:00 2001 From: shmuelarditi <91881199+shmuelarditi@users.noreply.github.com> Date: Wed, 30 Jul 2025 18:13:45 +0300 Subject: [PATCH 1/2] Update README.md --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 9894522e..20d09e30 100644 --- a/README.md +++ b/README.md @@ -13,3 +13,5 @@ Check out our developer resources: * [Elementor Developers](https://developers.elementor.com/) * [Elementor Developers Blog](https://developers.elementor.com/blog/) * [Elementor Developers Docs](https://developers.elementor.com/docs/) + + From 2047372c46f7e3366f0ab23db297cf407bd9086d Mon Sep 17 00:00:00 2001 From: shmuelarditi <91881199+shmuelarditi@users.noreply.github.com> Date: Wed, 30 Jul 2025 18:16:41 +0300 Subject: [PATCH 2/2] Update auto-dispatch.yaml --- .github/workflows/auto-dispatch.yaml | 28 ++-------------------------- 1 file changed, 2 insertions(+), 26 deletions(-) diff --git a/.github/workflows/auto-dispatch.yaml b/.github/workflows/auto-dispatch.yaml index 0754ec4d..ee300219 100644 --- a/.github/workflows/auto-dispatch.yaml +++ b/.github/workflows/auto-dispatch.yaml @@ -8,33 +8,9 @@ on: jobs: release-dispatch: - if: (github.event_name == 'push') || (github.event_name == 'pull_request' && github.event.pull_request.merged == true && github.base_ref == 'master') + if: github.event_name == 'push' || (github.event.pull_request.merged == true && github.base_ref == 'master') runs-on: ubuntu-latest steps: - - name: Determine version level - id: level - run: | - if [[ "${{ github.event_name }}" == "pull_request" ]]; then - # Extract labels from merged PR - LABELS="${{ join(github.event.pull_request.labels.*.name, ',') }}" - echo "PR Labels: $LABELS" - - if [[ "$LABELS" == *"major"* ]]; then - echo "level=major" >> $GITHUB_OUTPUT - echo "Using PR label: major" - elif [[ "$LABELS" == *"minor"* ]]; then - echo "level=minor" >> $GITHUB_OUTPUT - echo "Using PR label: minor" - else - echo "level=patch" >> $GITHUB_OUTPUT - echo "Using PR label default: patch" - fi - else - # Push to master - default to patch - echo "level=patch" >> $GITHUB_OUTPUT - echo "Using push default: patch" - fi - - name: Send dispatch uses: peter-evans/repository-dispatch@v3 with: @@ -43,7 +19,7 @@ jobs: event-type: release client-payload: | { - "level": "${{ steps.level.outputs.level }}", + "level": "patch", "source": "${{ github.event_name }}", "ref": "${{ github.ref }}", "sha": "${{ github.sha }}",