Skip to content

Commit 5d4821e

Browse files
development branch -> develop
1 parent 7fa7db2 commit 5d4821e

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/comment-patch.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
- completed
99
branches-ignore:
1010
- master
11-
- development
11+
- develop
1212

1313
jobs:
1414
create-patch:

.github/workflows/create-patch.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
push:
55
branches-ignore:
66
- master
7-
- development
7+
- develop
88

99
jobs:
1010
create-patch:
@@ -16,14 +16,14 @@ jobs:
1616
- name: Create Patch
1717
run: |
1818
git rev-parse --abbrev-ref HEAD > .branch-name
19-
git checkout development
19+
git checkout develop
2020
git checkout -b patch
2121
git merge --squash `cat .branch-name`
2222
git config --global user.email "$AUTHOR_EMAIL"
2323
git config --global user.name "$AUTHOR_NAME"
2424
git commit -m "Patch for `cat .branch-name`"
2525
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
2727
echo "::set-output name=PATCH_FILE::$PATCH_FILE"
2828
id: patch-creator
2929
env:

.github/workflows/test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
push:
55
branches-ignore:
66
- master
7-
- development
7+
- develop
88

99
jobs:
1010
test-with-mysql:

0 commit comments

Comments
 (0)