From aaa7a85ae68fd3adcb1b9999fe791b855d6752be Mon Sep 17 00:00:00 2001 From: Daniel Schultz Date: Fri, 26 Jun 2026 14:25:15 -0400 Subject: [PATCH] Add workflow to auto-add issues to project Issues opened in this repository must currently be added to the org project board by hand. Add a caller workflow that invokes the shared PhilanthropyDataCommons/.github reusable workflow so new issues are added to the board automatically. Issue PhilanthropyDataCommons/.github#5 Automatically add issues to current project --- .github/workflows/add-to-project.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .github/workflows/add-to-project.yml diff --git a/.github/workflows/add-to-project.yml b/.github/workflows/add-to-project.yml new file mode 100644 index 0000000..0be8536 --- /dev/null +++ b/.github/workflows/add-to-project.yml @@ -0,0 +1,10 @@ +name: Add to project + +on: + issues: + types: [opened, transferred, reopened] + +jobs: + add-to-project: + uses: PhilanthropyDataCommons/.github/.github/workflows/add-to-project.yml@main + secrets: inherit