diff --git a/.github/actions/deploy-integrations/action.yml b/.github/actions/deploy-integrations/action.yml index 4e57fa96aeb..45d161d5ce7 100644 --- a/.github/actions/deploy-integrations/action.yml +++ b/.github/actions/deploy-integrations/action.yml @@ -76,7 +76,7 @@ runs: redeploy=${{ inputs.force == 'true' && 1 || 0 }} dryrun="${{ inputs.dry_run == 'true' && '--dryRun' || '' }}" is_dry_run=${{ inputs.dry_run == 'true' && 1 || 0 }} - all_filters="-F '{integrations/*}' -F '!asana' ${{ inputs.extra_filter }}" + all_filters="-F '{integrations/*}' ${{ inputs.extra_filter }}" list_integrations_cmd="pnpm list $all_filters --json" integration_paths=$(eval $list_integrations_cmd | jq -r "map(".path") | .[]") diff --git a/bots/bugbuster/src/handlers/lint-all.ts b/bots/bugbuster/src/handlers/lint-all.ts index e8343eccf4d..d9f880b800c 100644 --- a/bots/bugbuster/src/handlers/lint-all.ts +++ b/bots/bugbuster/src/handlers/lint-all.ts @@ -94,7 +94,9 @@ export const handleLintAll: bp.WorkflowHandlers['lintAll'] = async (props) => { channel.teams.some((team) => result.identifier.includes(team)) ) - await botpress.respondText(channel.conversationId, _buildResultMessage(relevantIssues)).catch(() => {}) + if (relevantIssues.length > 0) { + await botpress.respondText(channel.conversationId, _buildResultMessage(relevantIssues)).catch(() => {}) + } } await workflow.setCompleted()