Skip to content

Commit c4aa33a

Browse files
authored
Merge branch 'main' into revive-e2e-tests
2 parents 55882e5 + 87f2abd commit c4aa33a

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+830
-598
lines changed
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
name: Issue Manager
2+
3+
permissions: {}
4+
5+
on:
6+
issue_comment:
7+
types:
8+
- created
9+
- edited
10+
11+
jobs:
12+
execute:
13+
runs-on: ubuntu-latest
14+
permissions:
15+
issues: write
16+
pull-requests: write
17+
steps:
18+
- uses: jpmcb/prow-github-actions@c44ac3a57d67639e39e4a4988b52049ef45b80dd # v2.0.0
19+
with:
20+
prow-commands: '/assign
21+
/unassign
22+
/lgtm
23+
/approve
24+
/area
25+
/priority
26+
/remove
27+
/close
28+
/reopen
29+
/lock
30+
/milestone
31+
/hold
32+
/cc
33+
/uncc'
34+
github-token: "${{ secrets.GITHUB_TOKEN }}"

.github/workflows/pre-commit.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
build-essential \
4848
pkg-config
4949
npm install -g markdownlint-cli
50-
pip install --user yamllint
50+
pip install --user yamllint codespell
5151
5252
- name: Cache Rust dependencies
5353
uses: actions/cache@v4
@@ -83,6 +83,9 @@ jobs:
8383
- name: Install pre-commit
8484
run: pip install pre-commit
8585

86+
- name: Run Code Spell Check
87+
run: make codespell
88+
8689
- name: Run pre-commit on Go, Rust, JavaScript, Markdown, Yaml and Python files
8790
run: |
8891
# Find all Go, Rust, JavaScripts, Markdown and Python files (excluding vendored/generated code)

.prowlabels.yaml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
area:
2+
- core
3+
- research
4+
- observability
5+
- networking
6+
- bench
7+
- environment
8+
- user-experience
9+
- docs
10+
- test-and-release
11+
12+
priority:
13+
- P0
14+
- P1
15+
- P2

CONTRIBUTING.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -205,6 +205,7 @@ The test suite includes:
205205
- **Envoy logs:** Check the terminal running `make run-envoy` for detailed request/response logs
206206
- **Router logs:** Check the terminal running `make run-router` for classification and routing decisions
207207
- **Rust library:** Use `RUST_LOG=debug` environment variable for detailed Rust logs
208+
- **Go library:** Use `SR_LOG_LEVEL=debug` environment variable for detailed Go logs
208209

209210
## Code Style and Standards
210211

Dockerfile.extproc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ RUN apt-get update && apt-get install -y \
1111
WORKDIR /app
1212

1313
# Copy only essential files for Rust build
14+
COPY tools/make/ tools/make/
1415
COPY Makefile ./
1516
COPY candle-binding/Cargo.toml candle-binding/
1617
COPY candle-binding/src/ candle-binding/src/
@@ -54,4 +55,4 @@ ENV LD_LIBRARY_PATH=/app/lib
5455

5556
EXPOSE 50051
5657

57-
CMD ["/app/extproc-server", "--config", "/app/config/config.yaml"]
58+
CMD ["/app/extproc-server", "--config", "/app/config/config.yaml"]

0 commit comments

Comments
 (0)