-
Notifications
You must be signed in to change notification settings - Fork 70
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
fe865c5
commit b7773f6
Showing
1 changed file
with
9 additions
and
10 deletions.
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 |
---|---|---|
|
@@ -28,21 +28,20 @@ jobs: | |
# echo $DIFF | ||
# echo "diff=$DIFF" >> $GITHUB_OUTPUT | ||
|
||
- name: Commit and push changes | ||
# if: steps.generate.outputs.diff == 'true' | ||
run: | | ||
git checkout -b update-docs | ||
git add docs/api-reference | ||
git config --global user.name 'github-actions' | ||
git config --global user.email '[email protected]' | ||
git commit -m "Update documentation" | ||
git push -f -u origin update-docs | ||
# - name: Commit and push changes | ||
# # if: steps.generate.outputs.diff == 'true' | ||
# run: | | ||
# git checkout -b update-docs | ||
# git add docs/api-reference | ||
# git config --global user.name 'github-actions' | ||
# git config --global user.email '[email protected]' | ||
# git commit -m "Update documentation" | ||
# git push -f -u origin update-docs | ||
|
||
- name: Create Pull Request | ||
uses: peter-evans/create-pull-request@v6 | ||
with: | ||
branch: update-docs | ||
base: main | ||
title: 'Update Documentation' | ||
body: 'This PR updates the documentation with the latest changes.' | ||
labels: 'documentation' |