forked from Beer-Ops/Beer-Ops.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcode-feature.sh
executable file
·110 lines (96 loc) · 3.44 KB
/
code-feature.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
#!/usr/bin/env bash
# This script:
# - takes the name of the customer to demo for as first parameter
# - if provided a second parameter (issue number), goes in non-interactive mode
# In non-interactive mode:
# - creates a feature branch with name of customer
# - commits the feature code changes
# - comments on the provided issue how to create a pull request
# Required environment variables for non-interactive mode
# - OCTO_ORG: organization that holds the octocat generator repository
# - OCTO_REPO: octocat generator repo name
# - GITHUB_COM_TOKEN: PAT with write access to the OCTO_REPO
# In interactive mode (one parameter):
# - optionally creates a feature branch if ran on master
# - optionally commits the feature code changes
# - optionally pushes the commits to the same branch upstream
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
source $DIR/git-setup.sh
BRANCH=$(git branch | sed -n -e 's/^\* \(.*\)/\1/p')
if [ "$#" -lt 1 ]; then
echo "Usage: $0 <customer name> " >&2
exit 1
fi
CUSTOMER=$1
INTERACTIVE=true
if [ "$#" -gt 1 ]; then
INTERACTIVE=false
TRIGGERED_ISSUE=$2
git_setup
fi
if [ "$INTERACTIVE" = true ]; then
if [ $BRANCH == "master" ]
then
echo "Your current branch is master, please first create a feature branch"
echo " For example: git checkout -b welcome-customer"
read -p "Do you want me to create that for you (y/N)?" -n 1 -r
echo
if [[ $REPLY =~ ^[Yy]$ ]]
then
git checkout -b welcome-customer || exit 1
BRANCH="welcome-customer"
else
exit 1
fi
fi
else
# normalize customer name in git branch
BRANCH=`echo $CUSTOMER | sed 's/[^a-zA-Z0-9_\-]*//g'`
git checkout -b $BRANCH || exit 1
fi
cp -rf $DIR/resources/* $DIR/../
# Add customer name to welcome sign
sed -i.bak -e "s|Customer|$CUSTOMER|g" assets/images/base-octocat.svg
rm assets/images/base-octocat.svg.bak
COMMIT_CHANGES=false
if [ "$INTERACTIVE" = true ]; then
read -p "Do you want to commit the code changes on branch '$BRANCH' (y/N)?" -n 1 -r
echo
if [[ $REPLY =~ ^[Yy]$ ]]
then
COMMIT_CHANGES=true
fi
else
COMMIT_CHANGES=true
fi
if [ "$COMMIT_CHANGES" = true ]; then
git add index.html
git commit -m "Specific welcome message for $CUSTOMER"
git add assets/images/base-octocat.svg
git commit -m "Specific logo for $CUSTOMER"
fi
PUSH_CHANGES=false
if [ "$INTERACTIVE" = true ]; then
read -p "Do you want to push the code changes on branch '$BRANCH' (y/N)?" -n 1 -r
echo
if [[ $REPLY =~ ^[Yy]$ ]]
then
PUSH_CHANGES=true
fi
else
PUSH_CHANGES=true
fi
if [ "$PUSH_CHANGES" = true ]; then
git push origin HEAD
fi
if [ "$INTERACTIVE" = false ]; then
cat <<- EOF > $DIR/issues/code-feature.json
{
"body": "Feature branch for $1 [created](https://github.com/${OCTO_ORG}/${OCTO_REPO}/tree/$BRANCH) :sparkles:!\n
In order to create a pull request from the [new branch](https://github.com/${OCTO_ORG}/${OCTO_REPO}/tree/$BRANCH), click [here](https://github.com/${OCTO_ORG}/${OCTO_REPO}/compare/master...${OCTO_ORG}:${BRANCH}?expand=1&title=PR%20for%20customer%20branch%20${BRANCH}).\n
Good luck for your demo!\n
"
}
EOF
curl -s -H "Authorization: Token $GITHUB_COM_TOKEN" -H "Accept: application/json" -H "Content-type: application/json" -X POST -d @$DIR/issues/code-feature.json https://api.github.com/repos/${OCTO_ORG}/${OCTO_REPO}/issues/$TRIGGERED_ISSUE/comments
fi