From c3a63cfa37a5bf759532c44ded5f3ff2e9f02879 Mon Sep 17 00:00:00 2001 From: Gloire Rubambiza Date: Wed, 15 Apr 2026 16:14:44 -0400 Subject: [PATCH] ci: Add org-wide project automation workflow Signed-off-by: Gloire Rubambiza --- .github/workflows/project.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .github/workflows/project.yml diff --git a/.github/workflows/project.yml b/.github/workflows/project.yml new file mode 100644 index 0000000..f6f4f4e --- /dev/null +++ b/.github/workflows/project.yml @@ -0,0 +1,24 @@ +name: Kagenti Project Automation + +on: + issues: + types: [opened] + pull_request_target: + types: [opened] + +permissions: + contents: read + +jobs: + add: + name: Add item to Kagenti Project + + permissions: + issues: write + pull-requests: write + contents: read + + # Pinned to @main intentionally: org-internal workflows propagate updates automatically. + uses: kagenti/.github/.github/workflows/add-to-project.yml@main + secrets: inherit +