Skip to content

Commit

Permalink
ci: Fixing to make workflow valid-name needed for each if [skip relea…
Browse files Browse the repository at this point in the history
…se] (#1842)

Fixes invalid workflow for project board automations

[category:Infrastructure]
  • Loading branch information
jaclynjessup authored Oct 11, 2022
1 parent e191e5b commit b951205
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/project-automations.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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/[email protected]
with:
Expand All @@ -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/[email protected]
with:
Expand All @@ -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/[email protected]
with:
Expand Down

0 comments on commit b951205

Please sign in to comment.