From 99870a2fc79e95eebe4eb830af7843403f792e40 Mon Sep 17 00:00:00 2001 From: Teju Gangisetty Date: Wed, 24 Jun 2026 10:34:14 -0400 Subject: [PATCH] feat: add issue management workflow Signed-off-by: Teju Gangisetty --- .../linked-issue-to-pr-management.yml | 24 +++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .github/workflows/linked-issue-to-pr-management.yml diff --git a/.github/workflows/linked-issue-to-pr-management.yml b/.github/workflows/linked-issue-to-pr-management.yml new file mode 100644 index 00000000..949e90bb --- /dev/null +++ b/.github/workflows/linked-issue-to-pr-management.yml @@ -0,0 +1,24 @@ +name: Linked Issue to PR Management + +on: + pull_request_target: + types: [opened, reopened] + issues: + types: [opened, labeled] + +jobs: + handle-issue: + if: github.event_name == 'issues' + permissions: + issues: write + contents: read + pull-requests: write + uses: krkn-chaos/actions/.github/workflows/linked-issue-to-pr-management.yml@main + handle-pr: + if: github.event_name == 'pull_request_target' + permissions: + issues: write + contents: read + pull-requests: write + uses: krkn-chaos/actions/.github/workflows/linked-issue-to-pr-management.yml@main +