From b86c4ec1007da64b4a3f213a329aab15541be094 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Javi=20Mart=C3=ADn?= Date: Thu, 7 Jul 2022 12:45:41 +0200 Subject: [PATCH] Use a better name for the kanban workflow The word "assign" was ambiguous, because it could have meant we were assigning the author. We were also displaying the same name twice. --- .github/workflows/kanban.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/kanban.yml b/.github/workflows/kanban.yml index 452c804d7..eb5fbce38 100644 --- a/.github/workflows/kanban.yml +++ b/.github/workflows/kanban.yml @@ -1,4 +1,4 @@ -name: Assign new pull requests +name: Kanban management on: pull_request_target: types: [opened, reopened] @@ -7,9 +7,9 @@ env: jobs: assign_one_project: + name: Add new pull requests to the kanban if: github.repository_owner == 'consul' runs-on: ubuntu-latest - name: Assign new pull requests steps: - name: Assign new pull requests to the reviewing column uses: srggrs/assign-one-project-github-action@1.3.1