Skip to content

Commit ae28316

Browse files
Merge pull request #2 from celonis/fork-setup
chore: setup fork
2 parents 9725608 + f128580 commit ae28316

8 files changed

Lines changed: 49 additions & 13 deletions

.github/CODEOWNERS

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,18 +4,20 @@
44
# means approval from ANY ONE of them satisfies the requirement.
55

66
# Default: quickwit-core owns everything
7-
* @quickwit-oss/quickwit-core
7+
# * @quickwit-oss/quickwit-core
88

99
# byoc-metrics paths — owned by byoc-metrics
10-
/quickwit/quickwit-parquet-engine/ @quickwit-oss/byoc-metrics
11-
/quickwit/quickwit-datafusion/ @quickwit-oss/byoc-metrics
12-
/quickwit/quickwit-df-core/ @quickwit-oss/byoc-metrics
13-
/quickwit/quickwit-dst/ @quickwit-oss/byoc-metrics
14-
/quickwit/quickwit-indexing/src/actors/parquet_pipeline/ @quickwit-oss/byoc-metrics
10+
# /quickwit/quickwit-parquet-engine/ @quickwit-oss/byoc-metrics
11+
# /quickwit/quickwit-datafusion/ @quickwit-oss/byoc-metrics
12+
# /quickwit/quickwit-df-core/ @quickwit-oss/byoc-metrics
13+
# /quickwit/quickwit-dst/ @quickwit-oss/byoc-metrics
14+
# /quickwit/quickwit-indexing/src/actors/parquet_pipeline/ @quickwit-oss/byoc-metrics
1515

1616
# Shared paths — either team can approve. `docs/internals/` is shared
1717
# architecture + verification docs that any team working on the codebase
1818
# may need to update. `Cargo.lock` churns on routine dependency bumps
1919
# and doesn't carry domain-specific review value.
20-
/docs/internals/ @quickwit-oss/quickwit-core @quickwit-oss/byoc-metrics
21-
/quickwit/Cargo.lock @quickwit-oss/quickwit-core @quickwit-oss/byoc-metrics
20+
# /docs/internals/ @quickwit-oss/quickwit-core @quickwit-oss/byoc-metrics
21+
# /quickwit/Cargo.lock @quickwit-oss/quickwit-core @quickwit-oss/byoc-metrics
22+
23+
* @celonis/identity-platform @celonis/platform-access

.github/workflows/coverage.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,9 @@ env:
2727

2828
jobs:
2929
test:
30+
# Disabled on current fork: only the shared workflows are kept, others are not required for the fork.
31+
if: false
32+
3033
name: Coverage
3134
runs-on: gh-ubuntu-arm64
3235
timeout-minutes: 40
@@ -178,7 +181,9 @@ jobs:
178181
files: ./quickwit/lcov.info
179182

180183
on-failure:
181-
if: ${{ github.repository_owner == 'quickwit-oss' && failure() }}
184+
# Disabled on current fork: only the shared workflows are kept, others are not required for the fork.
185+
if: false
186+
182187
name: On Failure
183188
needs: [test]
184189
runs-on: ubuntu-latest

.github/workflows/publish_cross_images.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,9 @@ permissions:
1313

1414
jobs:
1515
build-cross-images:
16+
# Disabled on current fork: only the shared workflows are kept, others are not required for the fork.
17+
if: false
18+
1619
name: Publish cross images
1720
runs-on: ubuntu-latest
1821
environment:

.github/workflows/publish_docker_images.yml

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@ env:
2222

2323
jobs:
2424
build-lambda:
25+
# Disabled on current fork: only the shared workflows are kept, others are not required for the fork.
26+
if: false
27+
2528
name: Build Lambda ARM64
26-
# Only build a fresh lambda for tag-triggered builds (v*, qw*, etc.).
27-
# Branch/edge builds and workflow_dispatch fall back to the pinned URL in build.rs.
28-
if: github.ref_type == 'tag'
2929
runs-on: ubuntu-latest
3030
permissions:
3131
contents: write
@@ -77,8 +77,10 @@ jobs:
7777
retention-days: 3
7878

7979
docker:
80+
# Disabled on current fork: only the shared workflows are kept, others are not required for the fork.
81+
if: false
82+
8083
needs: [build-lambda]
81-
if: always() && (needs.build-lambda.result == 'success' || needs.build-lambda.result == 'skipped')
8284
strategy:
8385
matrix:
8486
include:
@@ -187,6 +189,9 @@ jobs:
187189
retention-days: 1
188190

189191
merge:
192+
# Disabled on current fork: only the shared workflows are kept, others are not required for the fork.
193+
if: false
194+
190195
runs-on: ubuntu-latest
191196
needs: [docker]
192197
permissions:

.github/workflows/publish_lambda.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@ permissions:
2121

2222
jobs:
2323
build-lambda:
24+
# Disabled on current fork: only the shared workflows are kept, others are not required for the fork.
25+
if: false
26+
2427
name: Build Lambda ARM64
2528
runs-on: ubuntu-latest
2629
permissions:

.github/workflows/publish_nightly_packages.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@ permissions:
1010

1111
jobs:
1212
build-macos-binaries:
13+
# Disabled on current fork: only the shared workflows are kept, others are not required for the fork.
14+
if: false
15+
1316
name: Build ${{ matrix.target }}
1417
runs-on: macos-latest
1518
permissions:
@@ -27,6 +30,9 @@ jobs:
2730
version: nightly
2831
token: ${{ secrets.GITHUB_TOKEN }}
2932
build-linux-binaries:
33+
# Disabled on current fork: only the shared workflows are kept, others are not required for the fork.
34+
if: false
35+
3036
strategy:
3137
fail-fast: false
3238
matrix:

.github/workflows/publish_release_packages.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@ permissions:
1010

1111
jobs:
1212
build-lambda:
13+
# Disabled on current fork: only the shared workflows are kept, others are not required for the fork.
14+
if: false
15+
1316
name: Build Lambda ARM64
1417
runs-on: ubuntu-latest
1518
permissions:
@@ -62,6 +65,9 @@ jobs:
6265
retention-days: 3
6366

6467
build-macos-binaries:
68+
# Disabled on current fork: only the shared workflows are kept, others are not required for the fork.
69+
if: false
70+
6571
name: Build ${{ matrix.target }}
6672
runs-on: macos-latest
6773
needs: [build-lambda]
@@ -90,6 +96,9 @@ jobs:
9096
token: ${{ secrets.GITHUB_TOKEN }}
9197

9298
build-linux-binaries:
99+
# Disabled on current fork: only the shared workflows are kept, others are not required for the fork.
100+
if: false
101+
93102
strategy:
94103
matrix:
95104
target: [x86_64-unknown-linux-gnu, aarch64-unknown-linux-gnu]

.github/workflows/scorecard.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@ permissions:
1111

1212
jobs:
1313
analysis:
14+
# Disabled on current fork: only the shared workflows are kept, others are not required for the fork.
15+
if: false
16+
1417
name: Scorecards analysis
1518
runs-on: ubuntu-latest
1619
permissions:

0 commit comments

Comments
 (0)