From 43c15907009b6416e555b807a32a8ce4679567fd Mon Sep 17 00:00:00 2001 From: "fryorcraken.eth" Date: Wed, 16 Aug 2023 11:51:44 +1000 Subject: [PATCH] chore: automatically add new issues and PRs to project board --- .github/workflows/add-action-project.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/add-action-project.yml diff --git a/.github/workflows/add-action-project.yml b/.github/workflows/add-action-project.yml new file mode 100644 index 000000000..4f50380a6 --- /dev/null +++ b/.github/workflows/add-action-project.yml @@ -0,0 +1,17 @@ +name: Add new issues to Waku project board + +on: + issues: + types: [opened] + pull_request: + types: [opened] + +jobs: + add-to-project: + name: Add issue to project + runs-on: ubuntu-latest + steps: + - uses: actions/add-to-project@v0.5.0 + with: + project-url: https://github.com/orgs/waku-org/projects/2 + github-token: ${{ secrets.ADD_TO_PROJECT_PAT }}