diff --git a/.github/actions/tests/slack-summary-daily/scripts/create-blocks-plugin-tests.js b/.github/actions/tests/slack-summary-daily/scripts/create-blocks-plugin-tests.js index e2e99712e32..fc665c0472d 100644 --- a/.github/actions/tests/slack-summary-daily/scripts/create-blocks-plugin-tests.js +++ b/.github/actions/tests/slack-summary-daily/scripts/create-blocks-plugin-tests.js @@ -1,9 +1,8 @@ module.exports = ( { core } ) => { - const { UPLOAD_RESULT, E2E_RESULT, PLUGIN_NAME, PLUGIN_SLUG } = process.env; + const { E2E_RESULT, PLUGIN_NAME, PLUGIN_SLUG } = process.env; const { selectEmoji } = require( './utils' ); const fs = require( 'fs' ); - const emoji_UPLOAD = selectEmoji( UPLOAD_RESULT ); const emoji_E2E = selectEmoji( E2E_RESULT ); const reportURL = `https://woocommerce.github.io/woocommerce-test-reports/daily/${ PLUGIN_SLUG }/e2e`; @@ -12,18 +11,9 @@ module.exports = ( { core } ) => { type: 'section', text: { type: 'mrkdwn', - text: `<${ reportURL }|*${ PLUGIN_NAME }*>`, + text: `<${ reportURL }|*${ PLUGIN_NAME }*>: E2E tests ${ emoji_E2E }`, }, }, - { - type: 'context', - elements: [ - { - type: 'mrkdwn', - text: `"Upload plugin" test ${ emoji_UPLOAD }\tOther E2E tests ${ emoji_E2E }`, - }, - ], - }, { type: 'divider', }, diff --git a/plugins/woocommerce/changelog/e2e-update-daily-slack-pings b/plugins/woocommerce/changelog/e2e-update-daily-slack-pings new file mode 100644 index 00000000000..dc9cf2103f7 --- /dev/null +++ b/plugins/woocommerce/changelog/e2e-update-daily-slack-pings @@ -0,0 +1,4 @@ +Significance: patch +Type: dev + +Remove upload plugin test from daily reporting