Trigger refetch workflow on version creation (#17685)

https://github.com/user-attachments/assets/ec156aba-3a67-4eef-addf-86158c3f1837
This commit is contained in:
Thomas Trompette
2026-02-03 18:52:30 +01:00
committed by GitHub
parent fdd3e6d245
commit c18f574aee
4 changed files with 70 additions and 16 deletions
@@ -0,0 +1,9 @@
import { createFamilyState } from '@/ui/utilities/state/utils/createFamilyState';
export const shouldWorkflowRefetchRequestFamilyState = createFamilyState<
boolean,
string
>({
key: 'shouldWorkflowRefetchRequestFamilyState',
defaultValue: false,
});