diff --git a/action.yml b/action.yml index 9106820..ad9b9d2 100644 --- a/action.yml +++ b/action.yml @@ -74,7 +74,7 @@ inputs: description: >- Comma-separated list of integrations to notify in the created GitHub issue. When specified, matching integrations are triggered via mentions or commands in a collapsible "Integrations" section appended to the issue body. - Supported values: "doc-sentinel", "promptless", "dosu", "claude", "opencode", "copilot". Invalid values are ignored with a warning. + Supported values: "doc-sentinel", "promptless", "dosu", "claude", "opencode", "copilot", "cursor". Invalid values are ignored with a warning. The "copilot" integration auto-assigns the issue to Copilot instead of adding to the accordion. diff --git a/dist/index.js b/dist/index.js index 237a6e8..7e35fb2 100644 --- a/dist/index.js +++ b/dist/index.js @@ -31850,6 +31850,7 @@ const INTEGRATION_MAP = { "dosu": "\n@dosu $PROMPT", "claude": "\n@claude $PROMPT", "opencode": "\n/opencode $PROMPT", + "cursor": "\n@cursor $PROMPT", }; // All valid integration names (INTEGRATION_MAP keys + special-case integrations) diff --git a/index.js b/index.js index f41f3fa..a709619 100644 --- a/index.js +++ b/index.js @@ -14,6 +14,7 @@ const INTEGRATION_MAP = { "dosu": "\n@dosu $PROMPT", "claude": "\n@claude $PROMPT", "opencode": "\n/opencode $PROMPT", + "cursor": "\n@cursor $PROMPT", }; // All valid integration names (INTEGRATION_MAP keys + special-case integrations) diff --git a/package-lock.json b/package-lock.json index ce7aa36..81d38b8 100644 --- a/package-lock.json +++ b/package-lock.json @@ -371,6 +371,21 @@ "node": ">=8" } }, + "node_modules/fsevents": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, "node_modules/glob-parent": { "version": "5.1.2", "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz",