File tree Expand file tree Collapse file tree 4 files changed +12
-10
lines changed
Expand file tree Collapse file tree 4 files changed +12
-10
lines changed Original file line number Diff line number Diff line change 3636 run : gh pr merge --auto --merge "$PR_URL"
3737 env :
3838 PR_URL : ${{ github.event.pull_request.html_url }}
39- GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
39+ GITHUB_TOKEN : ${{ secrets.PERSONAL_TOKEN }}
Original file line number Diff line number Diff line change 1717
1818 - name : Setup Git user
1919 run : |
20- git config --local user.email "dependabot@ bot.com"
20+ git config --local user.email "bot@openai .com"
2121 git config --local user.name "github-actions[bot]"
2222
2323 - name : Generate branch name
@@ -28,11 +28,11 @@ jobs:
2828 run : |
2929 git checkout -b ${{ steps.branch.outputs.branch_name }} origin/main
3030 git rebase main
31-
31+
3232 - name : Setup .NET
3333 uses : actions/setup-dotnet@v4
3434 with :
35- dotnet-version : ' 9.0.x'
35+ dotnet-version : 9.0.x
3636
3737 - name : Generate code
3838 run : |
6060 - name : Wait for 15 seconds
6161 if : steps.changes.outputs.has_changes == 'true'
6262 run : sleep 15
63-
63+
6464 - name : Create pull request
6565 if : steps.changes.outputs.has_changes == 'true'
6666 run : gh pr create -B main -H ${{ steps.branch.outputs.branch_name }} --title 'feat:@coderabbitai' --body '@coderabbitai summary'
Original file line number Diff line number Diff line change 44 branches :
55 - main
66 tags :
7- - v**
7+ - v*
88
99permissions :
1010 contents : write
Original file line number Diff line number Diff line change 99 - ' examples/**'
1010 - ' src/helpers/GenerateDocs/**'
1111 - ' .github/workflows/mkdocs.yml'
12+ - ' src/tests/IntegrationTests/**'
13+ - ' README.md'
1214
1315# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
1416permissions :
@@ -28,15 +30,15 @@ jobs:
2830 steps :
2931 - name : Checkout
3032 uses : actions/checkout@v4
31-
33+
3234 - name : Setup Pages
3335 uses : actions/configure-pages@v5
3436
3537 - name : Setup .NET
3638 uses : actions/setup-dotnet@v4
3739 with :
38- dotnet-version : ' 9.0.x'
39-
40+ dotnet-version : 9.0.x
41+
4042 - name : Generate docs
4143 run : dotnet run --project src/helpers/GenerateDocs/GenerateDocs.csproj .
4244
4648 source myenv/bin/activate
4749 pip install mkdocs-material
4850 mkdocs build -d ./_site
49-
51+
5052 - name : Upload artifact
5153 uses : actions/upload-pages-artifact@v3
5254
You can’t perform that action at this time.
0 commit comments