Skip to content

Commit 20a8865

Browse files
committed
Add Codex CLI plugin manifest and scanner CI
1 parent 4f2ff3d commit 20a8865

File tree

2 files changed

+42
-0
lines changed

2 files changed

+42
-0
lines changed

.codex-plugin/plugin.json

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
"name": "trigger.dev",
3+
"version": "0.1.0",
4+
"description": "Trigger.dev \u2013 build and deploy fully\u2011managed AI agents and workflows",
5+
"author": {
6+
"name": "triggerdotdev",
7+
"url": "https://github.com/triggerdotdev"
8+
},
9+
"homepage": "https://github.com/triggerdotdev/trigger.dev",
10+
"repository": "https://github.com/triggerdotdev/trigger.dev",
11+
"keywords": [
12+
"mcp",
13+
"codex"
14+
],
15+
"mcpServers": "./.mcp.json"
16+
}
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Codex Plugin Quality Gate
2+
3+
on:
4+
push:
5+
branches: [main]
6+
pull_request:
7+
branches: [main]
8+
9+
concurrency:
10+
group: codex-plugin-scanner-${{ github.ref }}
11+
cancel-in-progress: true
12+
13+
jobs:
14+
scan:
15+
runs-on: ubuntu-latest
16+
timeout-minutes: 10
17+
permissions:
18+
contents: read
19+
steps:
20+
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
21+
- name: Codex plugin scanner
22+
uses: hashgraph-online/hol-codex-plugin-scanner-action@e83708a91ae4812872aa2905b99ad559a55c74ab
23+
with:
24+
plugin_dir: "."
25+
mode: scan
26+
fail_on_severity: critical

0 commit comments

Comments
 (0)