Skip to content

Commit 49bbebd

Browse files
committed
[ci] Fix commit and push to existing PR
[skip ci] Signed-off-by: Viet Nguyen Duc <[email protected]>
1 parent e6ea3ce commit 49bbebd

1 file changed

Lines changed: 10 additions & 2 deletions

File tree

.github/workflows/create-changelog-pr.yml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,9 +59,17 @@ jobs:
5959
git config --local user.name "Selenium CI Bot"
6060
git add .
6161
git commit -m "[ci] Upload CHANGELOG for Node/Standalone ${{ inputs.browser-name }} version with Grid ${{ inputs.grid-version }}" || exit 0
62-
- name: Push changes
62+
- name: Commit & Push changes
6363
if: steps.check-pr.outputs.pr-exists == 'true'
64-
run: git push origin browser-node-changelog
64+
uses: actions-js/push@master
65+
with:
66+
github_token: ${{ secrets.GITHUB_TOKEN }}
67+
author_email: "[email protected]"
68+
author_name: "Selenium CI Bot"
69+
message: "[ci] Upload CHANGELOG for Node/Standalone ${{ inputs.browser-name }} version with Grid ${{ inputs.grid-version }}"
70+
empty: true
71+
rebase: true
72+
branch: "browser-node-changelog"
6573
- name: Create Pull Request
6674
if: steps.check-pr.outputs.pr-exists == 'false'
6775
uses: peter-evans/create-pull-request@main

0 commit comments

Comments
 (0)