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:
43
43
# Create a new branch with random number appended
44
44
git checkout -b update-readme-grpc-${{ steps.random.outputs.random_number }}
45
45
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
47
53
git add docs/2-sampleserver/0-sample-python-base-code-gRPC/index.md
48
54
git commit -m "Update sample server documentation from README"
49
-
50
- # Push the new branch
51
55
git push origin update-readme-grpc-${{ steps.random.outputs.random_number }}
52
56
53
57
- name : Create Pull Request
You can’t perform that action at this time.
0 commit comments