From bdc4d9500d2d54fd1d354643ff47ce0196c8be47 Mon Sep 17 00:00:00 2001 From: Saurabh Chavan Date: Wed, 27 May 2026 13:15:45 +0530 Subject: [PATCH 1/3] fix: updated marketplace deployement contributor url endpoint --- scripts/release/marketplaceRelease.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/release/marketplaceRelease.js b/scripts/release/marketplaceRelease.js index d902b424b..9077d7050 100644 --- a/scripts/release/marketplaceRelease.js +++ b/scripts/release/marketplaceRelease.js @@ -3,7 +3,7 @@ const { join } = require("path"); const config = { appStoreUrl: "https://appstore.home.mendix.com/rest/packagesapi/v2", - contributorUrl: "https://contributor.mendixcloud.com/apis/v1", + contributorUrl: "https://contributor.mendix.com/apis/v1", // This one, for some reasons, needs to be added as OpenID header to contributor request. // The open id value (a39025a8-55b8-4532-bc5d-4e74901d11f9) is taken from widgets@mendix.com // account and could be found at Profile -> Advanced -> Personal Info -> View My Data -> Open id From 1ccb4374ff026648848d38e090176297dca6e5dd Mon Sep 17 00:00:00 2001 From: Saurabh Chavan Date: Wed, 27 May 2026 16:39:17 +0530 Subject: [PATCH 2/3] fix: slack notification fix on failure --- .github/actions/slack-notification/action.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/actions/slack-notification/action.yml b/.github/actions/slack-notification/action.yml index dc7d4af7b..f08bbfbb1 100644 --- a/.github/actions/slack-notification/action.yml +++ b/.github/actions/slack-notification/action.yml @@ -18,7 +18,8 @@ runs: - name: Send Slack notification uses: slackapi/slack-github-action@485a9d42d3a73031f12ec201c457e2162c45d02d # v2 with: - channel-id: ${{ inputs.channel-id }} - slack-message: ${{ inputs.message }} - env: - SLACK_BOT_TOKEN: ${{ inputs.bot-token }} + method: chat.postMessage + token: ${{ inputs.bot-token }} + payload: | + channel: ${{ inputs.channel-id }} + text: ${{ inputs.message }} From 7ce1130305268c2eafbb4553e67cf9cb0337a433 Mon Sep 17 00:00:00 2001 From: Saurabh Chavan Date: Wed, 27 May 2026 16:44:45 +0530 Subject: [PATCH 3/3] fix: added quotes to match the main branch --- .github/actions/slack-notification/action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/actions/slack-notification/action.yml b/.github/actions/slack-notification/action.yml index f08bbfbb1..8fe4fdd5b 100644 --- a/.github/actions/slack-notification/action.yml +++ b/.github/actions/slack-notification/action.yml @@ -21,5 +21,5 @@ runs: method: chat.postMessage token: ${{ inputs.bot-token }} payload: | - channel: ${{ inputs.channel-id }} - text: ${{ inputs.message }} + channel: "${{ inputs.channel-id }}" + text: "${{ inputs.message }}"