2021-05-13 16:49:29 +10:00
|
|
|
name: Add new issues to js-waku project board
|
2021-04-28 12:38:58 +10:00
|
|
|
|
2021-04-28 13:38:20 +10:00
|
|
|
on:
|
|
|
|
issues:
|
|
|
|
types: [opened]
|
2021-12-20 12:11:39 +11:00
|
|
|
pull_request_target:
|
2021-06-01 16:03:37 +10:00
|
|
|
types: [opened]
|
2021-04-26 20:34:11 +10:00
|
|
|
|
|
|
|
jobs:
|
2021-04-28 13:38:20 +10:00
|
|
|
add-new-issue-to-new-column:
|
2021-04-26 20:34:11 +10:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2021-06-01 16:03:37 +10:00
|
|
|
- name: Add issue to column "New"
|
|
|
|
if: ${{ !!github.event.issue }}
|
|
|
|
uses: alex-page/github-project-automation-plus@v0.6.0
|
2021-04-28 12:38:58 +10:00
|
|
|
with:
|
2021-05-13 16:49:29 +10:00
|
|
|
project: js-waku
|
2021-04-28 12:38:58 +10:00
|
|
|
column: New
|
2021-04-28 16:44:10 +10:00
|
|
|
repo-token: ${{ secrets.GH_ACTION_PROJECT_MGMT }}
|
2021-06-01 16:03:37 +10:00
|
|
|
- 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 }}
|