The second .clone() on line 718 is redundant since we already clone the user on line 715. Apply this diff to fix the issue: - let user: meta::user::User = match USERS.get(&format!("{org_id}/{}", user_id)) { - Some(user) => user.clone(), - None => return false, - ...
The pull request modifies the GitHub Actions workflow filedispatch-event-enterprise.yml. The change involves dynamically setting theclient-payloadrepository branch names using theBRANCH_NAMEvariable instead of a static "main" value. This update provides more flexibility in handling different branch contexts...