From 70d334efd1bdb1ceb718631ee91cf7ba9cb173bd Mon Sep 17 00:00:00 2001 From: Thomas Heartman Date: Wed, 11 May 2022 12:02:00 +0200 Subject: [PATCH] feat: add 'issue/pr to project' workflow --- frontend/.github/workflows/add-to-project.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 frontend/.github/workflows/add-to-project.yml diff --git a/frontend/.github/workflows/add-to-project.yml b/frontend/.github/workflows/add-to-project.yml new file mode 100644 index 0000000000..40bdef8c41 --- /dev/null +++ b/frontend/.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@main + secrets: inherit