Install Consul Democracy version 2.1.1 #27
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Kanban management | |
on: | |
pull_request_target: | |
types: [opened, reopened] | |
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/[email protected] | |
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/[email protected] | |
if: github.event.pull_request.draft == true | |
with: | |
project: "https://github.com/orgs/consuldemocracy/projects/1" | |
column_name: "Doing" |