From bbe45c2c241cbb221b54c7b520aac68731587499 Mon Sep 17 00:00:00 2001 From: Bob Evans Date: Tue, 19 Mar 2024 17:13:24 -0400 Subject: [PATCH] chore: adds a workflow to add any new issues or prs to our GH engineering board --- .github/workflows/add-to-board.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/add-to-board.yml diff --git a/.github/workflows/add-to-board.yml b/.github/workflows/add-to-board.yml new file mode 100644 index 0000000..c90f4d9 --- /dev/null +++ b/.github/workflows/add-to-board.yml @@ -0,0 +1,15 @@ +name: Auto Assign to Project(s) + +on: + issues: + types: [opened] + pull_request_target: + types: [opened] + +jobs: + add-to-board: + uses: newrelic/node-newrelic/.github/workflows/board.yml@main + # See board.yml explaining why this has to be done + secrets: + gh_token: ${{ secrets.NODE_AGENT_GH_TOKEN }} +