mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-09-21 00:02:30 +00:00
* fix(git-sync): run auto-pull as the admin who enabled it Co-Authored-By: Claude Opus 5 <noreply@anthropic.com> * fix(git-sync): audit the admin grant fork pulls make Co-Authored-By: Claude Opus 5 <noreply@anthropic.com> * chore: bump ee ref for the post-commit fork grant audit Co-Authored-By: Claude Opus 5 <noreply@anthropic.com> * fix(git-sync): address review nits on the auto-pull stamp Co-Authored-By: Claude Opus 5 <noreply@anthropic.com> * chore: update ee-repo-ref to ccada062c072d7b74894b63863728fd1ef9bdffd This commit updates the EE repository reference after PR #799 was merged in windmill-ee-private. Previous ee-repo-ref: 7cee30f0cf12721cba551cd754dc817444810470 New ee-repo-ref: ccada062c072d7b74894b63863728fd1ef9bdffd Automated by sync-ee-ref workflow. --------- Co-authored-by: Claude Opus 5 <noreply@anthropic.com> Co-authored-by: windmill-internal-app[bot] <windmill-internal-app[bot]@users.noreply.github.com>
28 lines
787 B
TOML
28 lines
787 B
TOML
[package]
|
|
name = "windmill-git-sync"
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
|
|
[lib]
|
|
name = "windmill_git_sync"
|
|
path = "./src/lib.rs"
|
|
|
|
[features]
|
|
private = ["windmill-common/private", "windmill-dep-map/private", "windmill-audit/private"]
|
|
enterprise = ["windmill-queue/enterprise", "windmill-common/enterprise", "windmill-audit/enterprise"]
|
|
all_sqlx_features = ["enterprise"]
|
|
default = []
|
|
|
|
[dependencies]
|
|
uuid.workspace = true
|
|
serde.workspace = true
|
|
sqlx.workspace = true
|
|
serde_json.workspace = true
|
|
tracing.workspace = true
|
|
windmill-common = { workspace = true, default-features = false }
|
|
windmill-queue.workspace = true
|
|
windmill-dep-map.workspace = true
|
|
windmill-audit.workspace = true
|
|
regex = "1.10.3"
|
|
tokio = { workspace = true, features = ["full"] } |