feat: stamp webhook trigger_kind on token-driven job runs (#10431)

* feat: stamp ui vs webhook trigger_kind on direct job runs

* fix: gate ui trigger kind on min worker version and dedupe display names

* docs: state that the ui trigger kind attributes rather than proves

* refactor: fold the trigger fallback into one trigger_or_fallback helper

* feat: hold trigger_kind as a tolerant label on the worker paths

* chore: refresh the sqlx offline cache for the trigger_kind label queries

* chore: update ee-repo-ref to 7de7daff5eed410e0c815ad6b292d2b4303f02f2

This commit updates the EE repository reference after PR #700 was merged in windmill-ee-private.

Previous ee-repo-ref: 974ab910d9a30c5565e1198ee312acc6d11239f3

New ee-repo-ref: 7de7daff5eed410e0c815ad6b292d2b4303f02f2

Automated by sync-ee-ref workflow.

* fix: keep the API job structs tolerant of unknown trigger kinds too

* chore: point ee-repo-ref at the merged EE main

---------

Co-authored-by: windmill-internal-app[bot] <windmill-internal-app[bot]@users.noreply.github.com>
This commit is contained in:
Ruben Fiszel
2026-07-31 14:46:08 +00:00
committed by GitHub
co-authored by windmill-internal-app[bot]
parent 02c4a9e515
commit dda59767c2
26 changed files with 270 additions and 93 deletions
@@ -9747,6 +9747,7 @@ async fn load_workspace_authed(
scopes: base_authed.scopes.clone(),
username_override: base_authed.username_override.clone(),
username_override_is_token_label: base_authed.username_override_is_token_label,
is_session_token: base_authed.is_session_token,
token_prefix: base_authed.token_prefix.clone(),
read_only: base_authed.read_only,
});
@@ -9777,6 +9778,7 @@ async fn load_workspace_authed(
scopes: base_authed.scopes.clone(),
username_override: base_authed.username_override.clone(),
username_override_is_token_label: base_authed.username_override_is_token_label,
is_session_token: base_authed.is_session_token,
token_prefix: base_authed.token_prefix.clone(),
read_only: base_authed.read_only,
})