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 }} +