Skip to content

Commit 3f5593f

Browse files
authored
Merge branch 'main' into claude/remove-foken-from-main-0199sauN3EjzVsMr46dYrsnq
2 parents 025ca76 + 52e76a0 commit 3f5593f

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

.github/workflows/ai-fix-dispatch.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66

77
jobs:
88
create-fix-branch:
9-
runs-on: ubuntu-latest
9+
runs-on: self-hosted
1010
steps:
1111
- name: Checkout repository (with submodules)
1212
uses: actions/checkout@v4

.github/workflows/claude-code-review.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
# github.event.pull_request.user.login == 'new-developer' ||
1919
# github.event.pull_request.author_association == 'FIRST_TIME_CONTRIBUTOR'
2020

21-
runs-on: ubuntu-latest
21+
runs-on: self-hosted
2222
permissions:
2323
contents: read
2424
pull-requests: read
@@ -29,7 +29,7 @@ jobs:
2929
- name: Checkout repository
3030
uses: actions/checkout@v4
3131
with:
32-
fetch-depth: 1
32+
fetch-depth: 2
3333
submodules: 'recursive'
3434

3535
- name: Run Claude Code Review

.github/workflows/claude.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
(github.event_name == 'pull_request_review_comment' && contains(github.event.comment.body, '@claude')) ||
1818
(github.event_name == 'pull_request_review' && contains(github.event.review.body, '@claude')) ||
1919
(github.event_name == 'issues' && (contains(github.event.issue.body, '@claude') || contains(github.event.issue.title, '@claude')))
20-
runs-on: ubuntu-latest
20+
runs-on: self-hosted
2121
permissions:
2222
contents: read
2323
pull-requests: read

.github/workflows/feedback-worker.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ env:
2020

2121
jobs:
2222
test:
23-
runs-on: ubuntu-latest
23+
runs-on: self-hosted
2424
steps:
2525
- uses: actions/checkout@v4
2626
with:
@@ -54,7 +54,7 @@ jobs:
5454
5555
build-and-push:
5656
needs: test
57-
runs-on: ubuntu-latest
57+
runs-on: self-hosted
5858
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
5959

6060
permissions:

.github/workflows/rust.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
# Quick format and lint checks
2121
check:
2222
name: Format & Lint Check ✨
23-
runs-on: ubuntu-latest
23+
runs-on: self-hosted
2424

2525
steps:
2626
- name: Checkout code 📦
@@ -49,8 +49,8 @@ jobs:
4949
fail-fast: false
5050
matrix:
5151
include:
52-
- os: ubuntu-latest
53-
name: Linux
52+
- os: self-hosted
53+
name: macOS
5454
rust: stable
5555

5656
runs-on: ${{ matrix.os }}

0 commit comments

Comments
 (0)