Setup Atlassian Workflow

Opt-in Atlassian/Jira integration via acli -- create work items, transition status, comment, link PRs. Mirrors gh-based workflow skills for Jira users. Use when working with Jira, Atlassian, or acli.

redpanda-data 834236e 2 files · 3.6 KB Updated 6 repo stars

File contents

Setup Atlassian Workflow

Opt-in Jira integration via acli (Atlassian CLI). Works alongside gh. If acli missing, Jira ops skip silent.

Capabilities: create/transition/comment work items, link PRs, search/view for context.

See REFERENCE.md for acli command patterns.

Steps

1. Install + Authenticate

# Install: https://developer.atlassian.com/cloud/acli/guides/installation/
acli jira auth login
acli jira auth status  # verify

2. Configure session-env.sh

if command -v acli &>/dev/null; then
  echo "export JIRA_PROJECT=YOUR_PROJECT_KEY" >> "$CLAUDE_ENV_FILE"
  echo "export ISSUE_TRACKER=acli" >> "$CLAUDE_ENV_FILE"
fi

Set ISSUE_TRACKER=both for parallel gh + acli.

3. Verify

  • acli jira auth status authenticated
  • JIRA_PROJECT set in session env

redpanda-data/ui-harness/tree/main/setup-atlassian-workflow commit 834236e2f1

Frequently asked questions

npx skillmds@latest add redpanda-data/setup-atlassian-workflow