From c260f9009459151b83ab4fe15b01b865197d3236 Mon Sep 17 00:00:00 2001 From: Thomas Heartman Date: Wed, 11 May 2022 11:10:16 +0200 Subject: [PATCH] chore: Add workflow file to auto-add items to project board (#1588) This change adds a workflow file that references the reusable workflow in the unleash/.github repo. It should (if all goes well), automatically add new issues and prs to the project board. --- .github/workflows/add-to-project.yml | 14 ++++++++++++++ 1 file changed, 14 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 0000000000..00617c0f13 --- /dev/null +++ b/.github/workflows/add-to-project.yml @@ -0,0 +1,14 @@ +name: Add new item to project board + +on: + issues: + types: + - opened + pull_request: + types: + - opened + +jobs: + add-to-project: + uses: unleash/.github/.github/workflows/add-item-to-project.yml + secrets: inherit