From b95120557b49f4e865cd9e724ef50595c4f51842 Mon Sep 17 00:00:00 2001 From: Jaclyn Date: Tue, 11 Oct 2022 12:14:56 -0600 Subject: [PATCH] ci: Fixing to make workflow valid-name needed for each if [skip release] (#1842) Fixes invalid workflow for project board automations [category:Infrastructure] --- .github/workflows/project-automations.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/project-automations.yml b/.github/workflows/project-automations.yml index bfed6f9923..c4eebeb92d 100644 --- a/.github/workflows/project-automations.yml +++ b/.github/workflows/project-automations.yml @@ -73,7 +73,7 @@ jobs: project_id: ${{ env.gh_project_id }} resource_node_id: $${{ github.event.issue.node_id }} status_value: ${{ env.in_review }} - - name: Add Issue type + - name: Add Issue Type - Bug if: github.event.label.name == 'bug' uses: leonsteinhaeuser/project-beta-automations@v2.0.1 with: @@ -82,6 +82,7 @@ jobs: project_id: ${{ env.gh_project_id }} resource_node_id: ${{ github.event.issue.node_id }} custom_field_values: '[{\"name\": \"Type\",\"type\": \"single_select\",\"value\": \"🐛 Bug\"}]' + - name: Add Issue Type - Epic if: github.event.label.name == 'epic' uses: leonsteinhaeuser/project-beta-automations@v2.0.1 with: @@ -90,6 +91,7 @@ jobs: project_id: ${{ env.gh_project_id }} resource_node_id: ${{ github.event.issue.node_id }} custom_field_values: '[{\"name\": \"Type\",\"type\": \"single_select\",\"value\": \"⚓️ Epic\"}]' + - name: Add Issue Type - Spike if: github.event.label.name == 'spike' uses: leonsteinhaeuser/project-beta-automations@v2.0.1 with: