File tree 3 files changed +5
-5
lines changed
3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 8
8
- completed
9
9
branches-ignore :
10
10
- master
11
- - development
11
+ - develop
12
12
13
13
jobs :
14
14
create-patch :
Original file line number Diff line number Diff line change 4
4
push :
5
5
branches-ignore :
6
6
- master
7
- - development
7
+ - develop
8
8
9
9
jobs :
10
10
create-patch :
@@ -16,14 +16,14 @@ jobs:
16
16
- name : Create Patch
17
17
run : |
18
18
git rev-parse --abbrev-ref HEAD > .branch-name
19
- git checkout development
19
+ git checkout develop
20
20
git checkout -b patch
21
21
git merge --squash `cat .branch-name`
22
22
git config --global user.email "$AUTHOR_EMAIL"
23
23
git config --global user.name "$AUTHOR_NAME"
24
24
git commit -m "Patch for `cat .branch-name`"
25
25
PATCH_FILE=`cat .branch-name | sed 's/\//_/g'`.patch # Replace forward slash in branch name with _
26
- git format-patch development ..HEAD --stdout -k > $PATCH_FILE
26
+ git format-patch develop ..HEAD --stdout -k > $PATCH_FILE
27
27
echo "::set-output name=PATCH_FILE::$PATCH_FILE"
28
28
id : patch-creator
29
29
env :
Original file line number Diff line number Diff line change 4
4
push :
5
5
branches-ignore :
6
6
- master
7
- - development
7
+ - develop
8
8
9
9
jobs :
10
10
test-with-mysql :
You can’t perform that action at this time.
0 commit comments