Skip to content

Commit

Permalink
ci: fixed error for create pull requests with CLI
Browse files Browse the repository at this point in the history
  • Loading branch information
FajarKim committed Dec 7, 2023
1 parent 21540e9 commit 244e182
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/generate-locale-doc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@ jobs:
- name: Push commit to a new branch
run: |
branch="auto_update_locale_readme"
message="docs(translation): auto update translation readme"
export branch="auto_update_locale_readme"
export message="docs(translation): auto update translation readme"
if [[ "$(git status --porcelain)" != "" ]]; then
git branch -D ${branch} || true
git checkout -b ${branch}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/generate-theme-doc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@ jobs:
- name: Push commit to a new branch
run: |
branch="auto_update_theme_readme"
message="docs(theme): auto update theme readme"
export branch="auto_update_theme_readme"
export message="docs(theme): auto update theme readme"
if [[ "$(git status --porcelain)" != "" ]]; then
git branch -D ${branch} || true
git checkout -b ${branch}
Expand Down

0 comments on commit 244e182

Please sign in to comment.