#!/bin/bash PROJECT="UI" EPIC_NUMBER="1095" 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" # 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" fi # The SW/FW should be first to use the script default summary # or be defined if needed. GROUP="SW" SUMMARY="Software split 2" DESCRIPTION="This is going to be a test for the SW Stories split into two." USER="$Behrouz" ./Jira_Create_Story.sh "$PROJECT" "$EPIC" "$GROUP" "$SUMMARY" "$DESCRIPTION" "$USER"