-
-
Notifications
You must be signed in to change notification settings - Fork 8.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
TEMP WIP - Need to set git credentials
- Loading branch information
1 parent
02d31bf
commit 138cd48
Showing
1 changed file
with
22 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,6 +19,10 @@ jobs: | |
uses: actions/checkout@v4 | ||
with: | ||
ref: ${{ inputs.tag }} | ||
- name: Prep git | ||
run: | | ||
git config --local user.email "[email protected]" | ||
git config --local user.name "Selenium CI Bot" | ||
- name: Get updated Rakefile | ||
run: | | ||
git fetch origin auto_docs | ||
|
@@ -46,6 +50,10 @@ jobs: | |
uses: actions/checkout@v4 | ||
with: | ||
ref: ${{ inputs.tag }} | ||
- name: Prep git | ||
run: | | ||
git config --local user.email "[email protected]" | ||
git config --local user.name "Selenium CI Bot" | ||
- name: Get updated Rakefile | ||
run: | | ||
git fetch origin auto_docs | ||
|
@@ -73,6 +81,10 @@ jobs: | |
uses: actions/checkout@v4 | ||
with: | ||
ref: ${{ inputs.tag }} | ||
- name: Prep git | ||
run: | | ||
git config --local user.email "[email protected]" | ||
git config --local user.name "Selenium CI Bot" | ||
- name: Get updated Rakefile | ||
run: | | ||
git fetch origin auto_docs | ||
|
@@ -103,6 +115,10 @@ jobs: | |
uses: actions/checkout@v4 | ||
with: | ||
ref: ${{ inputs.tag }} | ||
- name: Prep git | ||
run: | | ||
git config --local user.email "[email protected]" | ||
git config --local user.name "Selenium CI Bot" | ||
- name: Get updated Rakefile | ||
run: | | ||
git fetch origin auto_docs | ||
|
@@ -129,6 +145,10 @@ jobs: | |
uses: actions/checkout@v4 | ||
with: | ||
ref: ${{ inputs.tag }} | ||
- name: Prep git | ||
run: | | ||
git config --local user.email "[email protected]" | ||
git config --local user.name "Selenium CI Bot" | ||
- name: Get updated Rakefile | ||
run: | | ||
git fetch origin auto_docs | ||
|
@@ -187,4 +207,5 @@ jobs: | |
for patch in patches/*.patch; do | ||
git am < "$patch" | ||
done | ||
git push origin api-docs-${{ inputs.tag }} | ||
- name: Push Branch | ||
run: git push origin api-docs-${{ inputs.tag }} |