#!/bin/bash PROJECT="LDT" EPIC_NUMBER="952" EPIC="$PROJECT"-"$EPIC_NUMBER" echo "Creating stories for $EPIC" SUMMARY="" DESCRIPTION="" Behrouz="5d6f09ceab129d0c306d9ddb" Sean="612ea6656fa73c006a74b38a" Dara="63bdca0294d18cbf67728f0c" Michael="612ea6656b6661006902b6a6" Tiffany="60e7528f84c99200718a2beb" Sarina="5f84db2c57ca8c0076426fbb" Vinay="712020:786e2eb8-3cdd-4975-aa18-c3f40b0d6871" Jonny="712020:af6bd98b-1897-4870-aaf6-fd6169805d9e" Daniel="712020:1cd45b7c-2a8a-4635-beb4-fe4680cd2c44" Nico="712020:f7c17740-8464-4767-97c8-2b822cae8e8d" # in the UI project, all the stories are assigned to Behrouz. # since the UI project is not using the same group as the other projects, we need to assign all the stories to Behrouz. # and then assign the stories to the other users if [ "$PROJECT" = "UI" ]; then Behrouz="5d6f09ceab129d0c306d9ddb" Sean="$Behrouz" Dara="$Behrouz" Michael="$Behrouz" Tiffany="$Behrouz" Sarina="$Behrouz" Vinay="$Behrouz" Jonny="$Behrouz" Daniel="$Behrouz" Nico="$Behrouz" fi # The SW/FW should be first to use the script default summary # or be defined if needed. GROUP="SW" SUMMARY="Wifi" DESCRIPTION="Implementation of the Device Wifi connection.\nThis feature is also necessary for testing, debugging, and Device bring-up." USER="$Nico" ./Jira_Create_Story.sh "$PROJECT" "$EPIC" "$GROUP" "$SUMMARY" "$DESCRIPTION" "$USER" GROUP="SW" SUMMARY="Export Log" DESCRIPTION="Implementation of the Export Logs to USB drive.\nThis feature is also necessary for testing, debugging, and Device bring-up." USER="$Behrouz" ./Jira_Create_Story.sh "$PROJECT" "$EPIC" "$GROUP" "$SUMMARY" "$DESCRIPTION" "$USER" GROUP="SW" SUMMARY="Information - Version" DESCRIPTION="Implementation of the Device Information including only Version column.\nThis feature is also necessary for testing, debugging, and Device bring-up." USER="$Tiffany" ./Jira_Create_Story.sh "$PROJECT" "$EPIC" "$GROUP" "$SUMMARY" "$DESCRIPTION" "$USER" GROUP="SW" SUMMARY="Information - Service" DESCRIPTION="Implementation of the Device Information including only Service column.\nThis feature is also necessary for testing, debugging, and Device bring-up." USER="$Behrouz" ./Jira_Create_Story.sh "$PROJECT" "$EPIC" "$GROUP" "$SUMMARY" "$DESCRIPTION" "$USER" GROUP="SW" SUMMARY="Information - Treatment" DESCRIPTION="Implementation of the Device Information including only Treatment column.\nThis feature is also necessary for testing, debugging, and Device bring-up." USER="$Behrouz" ./Jira_Create_Story.sh "$PROJECT" "$EPIC" "$GROUP" "$SUMMARY" "$DESCRIPTION" "$USER" GROUP="SW" SUMMARY="Alarm Volume" DESCRIPTION="Implementation of the Alarm Volume.\nThis must be already done as part of the General Alarm implementation, but has different epic that we need to finalize the design and implementation.\nThis feature is also necessary for testing, debugging, and Device bring-up." USER="$Behrouz" ./Jira_Create_Story.sh "$PROJECT" "$EPIC" "$GROUP" "$SUMMARY" "$DESCRIPTION" "$USER" GROUP="SW" SUMMARY="Brightness" DESCRIPTION="ON-HOLD for 15\" LVDS touchscreen\nImplementation of the Screen Brightness was done with the 10inch LVDS touchscreen.\nThis feature is also necessary for testing, debugging, and Device bring-up." USER="$Tiffany" ./Jira_Create_Story.sh "$PROJECT" "$EPIC" "$GROUP" "$SUMMARY" "$DESCRIPTION" "$USER"