@useatlas/jira
v0.0.6
Published
Atlas Jira action plugin
Maintainers
Readme
@useatlas/jira
Create JIRA tickets from Atlas analysis findings with manual approval.
Install
bun add @useatlas/jiraUsage
import { defineConfig } from "@atlas/api/lib/config";
import { jiraPlugin } from "@useatlas/jira";
export default defineConfig({
plugins: [
jiraPlugin({
host: "https://myco.atlassian.net",
email: "[email protected]",
apiToken: process.env.JIRA_API_TOKEN!,
projectKey: "ENG",
}),
],
});Config
| Field | Type | Default | Description |
|-------|------|---------|-------------|
| host | string | — | JIRA instance URL |
| email | string | — | Email for Basic auth |
| apiToken | string | — | JIRA API token |
| projectKey | string | — | Default project key (uppercase, e.g. ENG) |
| labels | string[]? | — | Labels applied to every created issue |
