File tree Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -43,11 +43,15 @@ jobs:
4343 # Create a new branch with random number appended
4444 git checkout -b update-readme-grpc-${{ steps.random.outputs.random_number }}
4545
46- # Commit the changes
46+ - name : Set up authentication using GITHUB_TOKEN
47+ run : |
48+ git remote set-url origin https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/CLSFramework/CLSFramework.github.io.git
49+
50+ - name : Commit and Push Changes
51+ run : |
52+ cd CLSFramework.github.io
4753 git add docs/2-sampleserver/0-sample-python-base-code-gRPC/index.md
4854 git commit -m "Update sample server documentation from README"
49-
50- # Push the new branch
5155 git push origin update-readme-grpc-${{ steps.random.outputs.random_number }}
5256
5357 - name : Create Pull Request
You can’t perform that action at this time.
0 commit comments