Merge pull request #189 from status-im/pr-board

Add new PRs to board
This commit is contained in:
Franck Royer 2021-06-01 16:33:36 +10:00 committed by GitHub
commit fdda09973c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 12 additions and 1 deletions

View File

@ -3,13 +3,24 @@ name: Add new issues to js-waku project board
on:
issues:
types: [opened]
pull_request:
types: [opened]
jobs:
add-new-issue-to-new-column:
runs-on: ubuntu-latest
steps:
- uses: alex-page/github-project-automation-plus@v0.6.0
- name: Add issue to column "New"
if: ${{ !!github.event.issue }}
uses: alex-page/github-project-automation-plus@v0.6.0
with:
project: js-waku
column: New
repo-token: ${{ secrets.GH_ACTION_PROJECT_MGMT }}
- name: Add pull request to column "In Progress"
if: ${{ !!github.event.pull_request }}
uses: alex-page/github-project-automation-plus@v0.6.0
with:
project: js-waku
column: In Progress
repo-token: ${{ secrets.GH_ACTION_PROJECT_MGMT }}