Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .github/workflows/release-changelog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ jobs:

- name: Create branch
run: |
git config core.hooksPath /dev/null
git status
git fetch origin develop:develop
git checkout develop
Expand All @@ -64,7 +65,7 @@ jobs:
run: |
git add .
git commit -m "docs: generate changelog of release ${{ github.event.release.tag_name }}" -n
git push origin docs/generate-changelog-${{ github.event.release.tag_name }}
git push --no-verify origin docs/generate-changelog-${{ github.event.release.tag_name }}

- name: Create Pull Request
uses: dustinirving/create-pr@v1.0.2
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/sync-main-to-develop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,10 @@ jobs:

- name: Create a new branch
run: |
git config core.hooksPath /dev/null
git status
git checkout -b sync/main-${{ steps.package-version.outputs.current_version }}
git push origin sync/main-${{ steps.package-version.outputs.current_version }}
git push --no-verify origin sync/main-${{ steps.package-version.outputs.current_version }}

- name: Create Pull Request
uses: dustinirving/create-pr@v1.0.2
Expand Down
Loading