From 8aaa08740b4f994559ea64e4c682fe612af67cd8 Mon Sep 17 00:00:00 2001 From: Fabricio Aguiar Date: Tue, 13 Sep 2022 17:25:03 +0100 Subject: [PATCH] Adding kanban workflow [noissue] --- .github/workflows/kanban.yml | 97 ++++++++++++++++++++++++++++++++++++ 1 file changed, 97 insertions(+) create mode 100644 .github/workflows/kanban.yml diff --git a/.github/workflows/kanban.yml b/.github/workflows/kanban.yml new file mode 100644 index 000000000..a884dbfc2 --- /dev/null +++ b/.github/workflows/kanban.yml @@ -0,0 +1,97 @@ +# Manage issues in a project board using https://github.com/leonsteinhaeuser/project-beta-automations + +--- +name: Kanban +on: + pull_request_target: + issues: + types: + - labeled + - reopened + - assigned + - closed + +env: + free_to_take: Free to take + in_progress: In Progress + needs_review: Needs review + done: Done + +jobs: + # only prio-list labeled items should be added to the board + add-to-project-board: + if: github.event_name == 'issues' && contains(github.event.issue.labels.*.name, 'prio-list') && contains(fromJson('["labeled", "reopened"]'), github.event.action) + runs-on: ubuntu-latest + steps: + - name: Add issue to Free-to-take list + uses: leonsteinhaeuser/project-beta-automations@v2.0.0 + with: + gh_token: ${{ secrets.RELEASE_TOKEN }} + organization: pulp + project_id: 8 + resource_node_id: ${{ github.event.issue.node_id }} + operation_mode: status + status_value: ${{ env.free_to_take }} # Target status + + move-to-inprogress: + if: github.event_name == 'issues' && github.event.action == 'assigned' + runs-on: ubuntu-latest + steps: + - name: Move an issue to the In Progress column + uses: leonsteinhaeuser/project-beta-automations@v2.0.0 + with: + gh_token: ${{ secrets.RELEASE_TOKEN }} + organization: pulp + project_id: 8 + resource_node_id: ${{ github.event.issue.node_id }} + operation_mode: status + status_value: ${{ env.in_progress }} # Target status + + find-linked-issues: + if: github.event_name == 'pull_request_target' + runs-on: ubuntu-latest + name: Find issues linked to a PR + outputs: + linked-issues: ${{ steps.linked-issues.outputs.issues }} + steps: + - name: Checkout + uses: actions/checkout@v2 + - name: Get Linked Issues Action + uses: kin/gh-action-get-linked-issues@v1.0 + id: linked-issues + with: + access-token: ${{ secrets.RELEASE_TOKEN }} + + move-to-needs-review: + if: github.event_name == 'pull_request_target' && contains(fromJson(needs.find-linked-issues.outputs.linked-issues).*.issue.state, 'open') + runs-on: ubuntu-latest + name: Move linked issues to Needs Review + needs: find-linked-issues + strategy: + max-parallel: 3 + matrix: + issues: ${{ fromJSON(needs.find-linked-issues.outputs.linked-issues) }} + steps: + - name: Move to Needs Review + uses: leonsteinhaeuser/project-beta-automations@v2.0.0 + with: + gh_token: ${{ secrets.RELEASE_TOKEN }} + organization: pulp + project_id: 8 + resource_node_id: ${{ matrix.issues.issue.node_id }} + operation_mode: status + status_value: ${{ env.needs_review }} # Target status + + move-to-done: + if: github.event_name == 'issues' && github.event.action == 'closed' + runs-on: ubuntu-latest + steps: + - name: Move an issue to the Done column + uses: leonsteinhaeuser/project-beta-automations@v2.0.0 + with: + gh_token: ${{ secrets.RELEASE_TOKEN }} + organization: pulp + project_id: 8 + resource_node_id: ${{ github.event.issue.node_id }} + operation_mode: status + status_value: ${{ env.done }} # Target status