Skip to content

Commit 50d2bc5

Browse files
committed
feat: initial commit
0 parents  commit 50d2bc5

23 files changed

Lines changed: 4446 additions & 0 deletions

.github/workflows/release.yml

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
name: Release-plz
2+
3+
permissions:
4+
pull-requests: write
5+
contents: write
6+
7+
on:
8+
push:
9+
branches:
10+
- main
11+
12+
jobs:
13+
# Create a PR with the new versions and changelog, preparing the next release.
14+
release-plz-pr:
15+
name: Release-plz PR
16+
runs-on: ubuntu-latest
17+
if: ${{ github.repository_owner == 'liamwh' }}
18+
permissions:
19+
contents: write
20+
pull-requests: write
21+
concurrency:
22+
group: release-plz-${{ github.ref }}
23+
cancel-in-progress: false
24+
steps:
25+
- name: Checkout repository
26+
uses: actions/checkout@v4
27+
with:
28+
fetch-depth: 0
29+
- name: Install Rust toolchain
30+
uses: dtolnay/rust-toolchain@stable
31+
- name: Run release-plz
32+
uses: release-plz/action@v0.5
33+
with:
34+
command: release-pr
35+
env:
36+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
37+
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}

.gitignore

Lines changed: 67 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
1+
target
2+
target/*
3+
Cargo.locks
4+
node_modules/
5+
.husky/_/
6+
.DS_Store
7+
.cursor/rules
8+
9+
# Ignore go.work
10+
*.work
11+
go.work.sum
12+
13+
# Ignore local DB files
14+
*.db
15+
*.db-*
16+
17+
# Ignore stubs created by policy_evaluation.proto
18+
dev.azure.com/
19+
20+
# Logs
21+
logs
22+
*.log
23+
npm-debug.log*
24+
yarn-debug.log*
25+
yarn-error.log*
26+
pnpm-debug.log*
27+
lerna-debug.log*
28+
29+
dist
30+
dist-ssr
31+
*.local
32+
33+
# Editor directories and files
34+
**/*.venv/*
35+
**/*.vscode/*
36+
!.vscode/extensions.json
37+
!.vscode/settings.json
38+
.idea
39+
.DS_Store
40+
*.suo
41+
*.ntvs*
42+
*.njsproj
43+
*.sln
44+
*.sw?
45+
**/*.env
46+
47+
build_rs_cov.profraw
48+
49+
coverage/*
50+
# Used in coverage files
51+
coverage.out
52+
53+
/build
54+
/.svelte-kit
55+
**/.svelte-kit/tsconfig.json
56+
/package
57+
!bin/alphaquant/cmd/alphaquant/env.example
58+
59+
/docs/guide/book
60+
61+
docker/**/data
62+
deployment/openshift/volumes/**/data
63+
64+
**/*.key
65+
66+
**/lcov.info
67+
**/tempo-data

0 commit comments

Comments
 (0)