From 853b7903de2a2b23d8283d2e86ffa5ca9adc1d8d Mon Sep 17 00:00:00 2001 From: Jan Klare Date: Mon, 4 May 2026 12:25:41 +0200 Subject: [PATCH] actions: automatically add all opened issues and PRs to project board * reuse workflow from osism/.github/.github/workflows/add-to-project.yml to add Issues and PRs to project boards Signed-off-by: Jan Klare --- .github/workflows/add-to-project.yml | 16 ++++++++++++++++ 1 file changed, 16 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 00000000..fb65c35f --- /dev/null +++ b/.github/workflows/add-to-project.yml @@ -0,0 +1,16 @@ +name: Add issues and PRs to project boards + +on: + issues: + types: + - opened + pull_request: + types: + - opened + +permissions: read-all + +jobs: + add-to-project-boards: + uses: osism/.github/.github/workflows/add-to-project.yml@main + secrets: inherit