wrbl606/jira-to-pr
Create a pull request that solves a Jira ticket with an agentic coding CLI.
View on GitHubTrust Signals
- Scorecard Score
- not yet scored
- Maintenance Recency
- Stale
- License
- None
Inputs
| name | description | required | default |
|---|---|---|---|
| jira-ticket-id | Jira issue key to load and solve, for example PROJ-123. | yes | — |
| jira-base-url | Base URL for Jira, for example https://example.atlassian.net. | yes | — |
| jira-email | Jira account email. Required when jira-auth-method is basic. | no | — |
| jira-api-token | Jira API token or bearer token. | yes | — |
| jira-auth-method | Jira authentication method. Supported values are basic and bearer. | no | basic |
| github-token | GitHub token used to push the branch and create the pull request. | no | — |
| config-dir | Directory in the checked out repository containing prompts and hook scripts. | no | ./jira-to-pr |
| provider | Coding CLI provider adapter to run. | no | codex |
| base-branch | Pull request base branch. Defaults to the checked out branch. | no | — |
| branch-prefix | Prefix for generated solution branches. | no | jira-to-pr |
| commit-message | Commit message. Supports {ticket}. | no | Solve {ticket} |
| pr-title | Pull request title. Supports {ticket} and {summary}. | no | {ticket}: {summary} |
| pr-body | Optional pull request body. Supports {ticket} and {summary}. | no | — |
| pr-labels | Comma-separated labels to add to the pull request. | no | — |
| draft | Create the pull request as a draft. | no | false |
| codex-install-command | Command used to install Codex CLI when the codex provider runs. | no | npm install -g @openai/codex |
| codex-model | Optional model name passed to Codex CLI. | no | — |
| codex-args | Extra arguments passed to codex exec. | no | — |
| fail-on-empty-diff | Fail when the provider leaves no repository changes. | no | true |
Outputs
| name | description |
|---|---|
| pull-request-url | URL of the created pull request. |
| branch | Name of the pushed solution branch. |