Integrate GovernanceAI with Bitbucket Cloud or Server for automated AI governance scanning.
repository:read
pullrequest:read
✅ Automatic Scanning
✅ PR Integration
1# bitbucket-pipelines.yml2image: atlassian/default-image:234pipelines:5 branches:6 main:7 - step:8 name: GovernanceAI Scan9 script:10 - |11 curl -X POST https://api.governanceai.com/v1/scans \12 -H "Authorization: Bearer $GOVERNANCEAI_API_KEY" \13 -d '{14 "repository": "'$BITBUCKET_REPO_FULL_NAME'",15 "ref": "'$BITBUCKET_COMMIT'"16 }'