Skip to content

Commit 60d8b41

Browse files
authored
fix: correctly set paths_ignore (#51)
* fix: correctly set paths_ignore * feat(ci): PR labeler * update * update * update
1 parent 993071e commit 60d8b41

File tree

3 files changed

+40
-2
lines changed

3 files changed

+40
-2
lines changed

.github/labeler.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
ci:
2+
- .github/**/*
3+
4+
crate-circuits:
5+
- crates/circuits/**/*
6+
7+
crate-chunk-circuit:
8+
- crates/circuits/chunk-circuit/**/*
9+
10+
crate-batch-circuit:
11+
- crates/circuits/batch-circuit/**/*
12+
13+
crate-bundle-circuit:
14+
- crates/circuits/bundle-circuit/**/*
15+
16+
crate-verifier:
17+
- crates/verifier/**/*
18+
19+
crate-prover:
20+
- crates/prover/**/*
21+
22+
crate-integration:
23+
- crates/integration/**/*
24+
25+
crate-build-guest:
26+
- crates/build-guest/**/*

.github/workflows/labeler.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name: Pull Request Labeler
2+
3+
on:
4+
pull_request:
5+
types: [synchronize, opened, reopened, ready_for_review]
6+
7+
jobs:
8+
triage:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/labeler@v4
12+
with:
13+
repo-token: "${{ secrets.GITHUB_TOKEN }}"

.github/workflows/lint.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,7 @@ jobs:
2323
with:
2424
cancel_others: 'true'
2525
concurrent_skipping: same_content_newer
26-
paths_ignore:
27-
- '**/README.md'
26+
paths_ignore: '["**/README.md"]'
2827

2928
fmt:
3029
needs: [ skip_check ]

0 commit comments

Comments
 (0)