Accepted

GitHub Integration

Provide integration with GitHub mainly from expressions and email configured in processes and each process integrated to GitHub be a repository within GitHub

Comments (1)

photo
1

As workaround you can export Bizagi expression objects from database to json file and commit it git repository.

As example:

  1. SELECT objName,

    dbo.fnBA_DB_BlobToClob(objContentResolved) AS fullObject,

    JSON_VALUE(dbo.fnBA_DB_BlobToClob(objContentResolved), '$.content') AS Expression

    FROM BABIZAGICATALOG

    WHERE objTypeName = 'BR_Rule'

    AND deleted = 0

Martin