Merge pull request #5608 from consuldemocracy/prs_in_kanban
Remove kanban management github action workflow
This commit is contained in:
27
.github/workflows/kanban.yml
vendored
27
.github/workflows/kanban.yml
vendored
@@ -1,27 +0,0 @@
|
||||
name: Kanban management
|
||||
on:
|
||||
pull_request_target:
|
||||
types: [opened, reopened]
|
||||
permissions: {}
|
||||
env:
|
||||
MY_GITHUB_TOKEN: ${{ secrets.KANBAN_TOKEN }}
|
||||
|
||||
jobs:
|
||||
assign_one_project:
|
||||
name: Add new pull requests to the kanban
|
||||
if: github.repository_owner == 'consuldemocracy'
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Assign new pull requests to the reviewing column
|
||||
uses: srggrs/assign-one-project-github-action@1.3.1
|
||||
if: github.event.pull_request.draft == false
|
||||
with:
|
||||
project: "https://github.com/orgs/consuldemocracy/projects/1"
|
||||
column_name: "Reviewing"
|
||||
|
||||
- name: Assign new draft pull requests to the doing column
|
||||
uses: srggrs/assign-one-project-github-action@1.3.1
|
||||
if: github.event.pull_request.draft == true
|
||||
with:
|
||||
project: "https://github.com/orgs/consuldemocracy/projects/1"
|
||||
column_name: "Doing"
|
||||
Reference in New Issue
Block a user