mirror of
https://github.com/logos-messaging/logos-messaging-nim.git
synced 2026-01-04 06:53:12 +00:00
Add GH project board automation (#666)
* Add GH project board automation * Tweak column name * Tweak
This commit is contained in:
parent
728ce95ea9
commit
357b686bea
26
.github/workflows/add-action-project.yml
vendored
Normal file
26
.github/workflows/add-action-project.yml
vendored
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
name: Add new issues and PRs to nim-waku project board
|
||||||
|
|
||||||
|
on:
|
||||||
|
issues:
|
||||||
|
types: [opened]
|
||||||
|
pull_request:
|
||||||
|
types: [opened]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
add-new-issue-to-new-column:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Add issue to column "New"
|
||||||
|
if: ${{ !!github.event.issue }}
|
||||||
|
uses: alex-page/github-project-automation-plus@v0.6.0
|
||||||
|
with:
|
||||||
|
project: nim-waku
|
||||||
|
column: New
|
||||||
|
repo-token: ${{ secrets.GH_ACTION_PROJECT_MGMT }}
|
||||||
|
- name: Add pull request to column "Review/QA"
|
||||||
|
if: ${{ !!github.event.pull_request }}
|
||||||
|
uses: alex-page/github-project-automation-plus@v0.6.0
|
||||||
|
with:
|
||||||
|
project: nim-waku
|
||||||
|
column: Review/QA
|
||||||
|
repo-token: ${{ secrets.GH_ACTION_PROJECT_MGMT }}
|
||||||
Loading…
x
Reference in New Issue
Block a user