mirror of https://github.com/waku-org/js-waku.git
Add new PRs to board
This commit is contained in:
parent
7e77e7ae71
commit
1735beb798
|
@ -3,13 +3,24 @@ name: Add new issues to js-waku project board
|
||||||
on:
|
on:
|
||||||
issues:
|
issues:
|
||||||
types: [opened]
|
types: [opened]
|
||||||
|
pull_request:
|
||||||
|
types: [opened]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
add-new-issue-to-new-column:
|
add-new-issue-to-new-column:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
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:
|
with:
|
||||||
project: js-waku
|
project: js-waku
|
||||||
column: New
|
column: New
|
||||||
repo-token: ${{ secrets.GH_ACTION_PROJECT_MGMT }}
|
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 }}
|
||||||
|
|
Loading…
Reference in New Issue