Skip to content

Commit 76f1fa1

Browse files
committed
ci: Fixed.
1 parent 75885cf commit 76f1fa1

File tree

4 files changed

+12
-10
lines changed

4 files changed

+12
-10
lines changed

.github/workflows/auto-merge.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,4 +36,4 @@ jobs:
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 }}

.github/workflows/auto-update.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
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: |
@@ -60,7 +60,7 @@ jobs:
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'

.github/workflows/dotnet.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
branches:
55
- main
66
tags:
7-
- v**
7+
- v*
88

99
permissions:
1010
contents: write

.github/workflows/mkdocs.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ on:
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
1416
permissions:
@@ -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

@@ -46,7 +48,7 @@ jobs:
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

0 commit comments

Comments
 (0)