From 4a330fd569c2174888c37a81054204f568143d68 Mon Sep 17 00:00:00 2001 From: Andre Castillo Date: Wed, 11 Mar 2026 16:13:42 -0400 Subject: [PATCH] chore: add JIRA sync workflow Add reusable workflow from flume/github-actions that syncs PR lifecycle events to JIRA (status transitions and description sync). Co-Authored-By: Claude Opus 4.6 --- .github/workflows/jira-sync.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/jira-sync.yml diff --git a/.github/workflows/jira-sync.yml b/.github/workflows/jira-sync.yml new file mode 100644 index 0000000..e45a9e7 --- /dev/null +++ b/.github/workflows/jira-sync.yml @@ -0,0 +1,15 @@ +name: JIRA Sync + +on: + pull_request: + types: + - opened + - edited + - ready_for_review + - converted_to_draft + - closed + +jobs: + jira-sync: + uses: flume/github-actions/.github/workflows/jira-sync.yml@main + secrets: inherit