feat: add issue management workflow

Signed-off-by: Teju Gangisetty <tgangise@redhat.com>
This commit is contained in:
Teju Gangisetty
2026-07-14 14:21:15 -04:00
committed by Naga Ravi Chaitanya Elluri
parent 8a359918e3
commit 99870a2fc7
@@ -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