diff --git a/.codex-plugin/plugin.json b/.codex-plugin/plugin.json new file mode 100644 index 000000000000..5005bc023550 --- /dev/null +++ b/.codex-plugin/plugin.json @@ -0,0 +1,16 @@ +{ + "name": "OpenMetadata", + "version": "0.1.0", + "description": "OpenMetadata is a unified metadata platform for data discovery, data observability, and data governance powered by a central metadata repository, in-depth column level lineage, and seamless team colla", + "author": { + "name": "open-metadata", + "url": "https://github.com/open-metadata" + }, + "homepage": "https://github.com/open-metadata/OpenMetadata", + "repository": "https://github.com/open-metadata/OpenMetadata", + "keywords": [ + "mcp", + "codex" + ], + "mcpServers": "./.mcp.json" +} \ No newline at end of file diff --git a/.github/workflows/codex-plugin-scanner.yml b/.github/workflows/codex-plugin-scanner.yml new file mode 100644 index 000000000000..c1df010c4747 --- /dev/null +++ b/.github/workflows/codex-plugin-scanner.yml @@ -0,0 +1,26 @@ +name: Codex Plugin Quality Gate + +on: + push: + branches: [main] + pull_request: + branches: [main] + +concurrency: + group: codex-plugin-scanner-${{ github.ref }} + cancel-in-progress: true + +jobs: + scan: + runs-on: ubuntu-latest + timeout-minutes: 10 + permissions: + contents: read + steps: + - uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4 + - name: Codex plugin scanner + uses: hashgraph-online/hol-codex-plugin-scanner-action@e83708a91ae4812872aa2905b99ad559a55c74ab + with: + plugin_dir: "." + mode: scan + fail_on_severity: critical