├── .gitattributes ├── .gitignore ├── CODEOWNERS └── README.md /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | README.md merge=union 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda-community-hub/camunda-8-connectors/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda-community-hub/camunda-8-connectors/HEAD/README.md --------------------------------------------------------------------------------