From 28696d6ee0b442baa75f300a1dc4a8de8ea21ba2 Mon Sep 17 00:00:00 2001 From: Franck Royer Date: Tue, 18 May 2021 13:52:50 +1000 Subject: [PATCH] Add GH action to automatically add issues to the project board (#372) --- .github/workflows/add-issue-to-project.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/add-issue-to-project.yml diff --git a/.github/workflows/add-issue-to-project.yml b/.github/workflows/add-issue-to-project.yml new file mode 100644 index 00000000..490a215d --- /dev/null +++ b/.github/workflows/add-issue-to-project.yml @@ -0,0 +1,15 @@ +name: Add new issues Vac PM Board + +on: + issues: + types: [opened] + +jobs: + add-new-issue-to-new-column: + runs-on: ubuntu-latest + steps: + - uses: alex-page/github-project-automation-plus@v0.6.0 + with: + project: Vac PM Board + column: New + repo-token: ${{ secrets.GH_ACTION_PROJECT_MGMT }}