From bdcedafc8d3b163c5cc9bce343256a37f7dc3b38 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Javi=20Mart=C3=ADn?= Date: Tue, 2 Jul 2024 00:53:07 +0200 Subject: [PATCH] Remove kanban management github action workflow This workflow only supports classic projects [1], but we're migrating to new projects because github will automatically close classic projects on August 23 [2]. [1] Issue 89 in https://github.com/srggrs/assign-one-project-github-action/ [2] https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/ --- .github/workflows/kanban.yml | 27 --------------------------- 1 file changed, 27 deletions(-) delete mode 100644 .github/workflows/kanban.yml diff --git a/.github/workflows/kanban.yml b/.github/workflows/kanban.yml deleted file mode 100644 index a070bb91a..000000000 --- a/.github/workflows/kanban.yml +++ /dev/null @@ -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"