diff --git a/.github/workflows/check-api-for-breaking-changes.yml b/.github/workflows/check-api-for-breaking-changes.yml index f0dcfc8cb6..48a58a497a 100644 --- a/.github/workflows/check-api-for-breaking-changes.yml +++ b/.github/workflows/check-api-for-breaking-changes.yml @@ -64,6 +64,9 @@ jobs: if [ $HEALTHY -ne 1 ]; then echo "Container did not become healthy in time" + + echo "Container logs:" + docker logs infisical-api exit 1 fi - name: Install openapi-diff diff --git a/backend/src/server/routes/v1/slack-router.ts b/backend/src/server/routes/v1/slack-router.ts index 94276a13cc..a351041a20 100644 --- a/backend/src/server/routes/v1/slack-router.ts +++ b/backend/src/server/routes/v1/slack-router.ts @@ -19,6 +19,8 @@ const sanitizedSlackIntegrationSchema = WorkflowIntegrationsSchema.pick({ }) ); +// test change + export const registerSlackRouter = async (server: FastifyZodProvider) => { const appCfg = getConfig();