From 78de0cc8d6381415fd03daaa56b8d37184dbbfff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Oskar=20Thor=C3=A9n?= Date: Mon, 24 May 2021 13:47:50 +0800 Subject: [PATCH] Automatically add new issues to project board (#566) Same as https://github.com/vacp2p/rfc/pull/372 but for nim-waku - thanks @D4nte for idea! --- .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 000000000..490a215dc --- /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 }}