I won again! Which means another giveaway, but we’ll make this one interesting, how’s that sound?
This giveaway will have two parts, and the 1st must be done to participate! (It’s easy!)
All you need to do is create a workflow that somehow randomly selects a person in the end. It can be random, process of elimination, ect, this is so everyone can have a chance to have theirs picked.
In a week, one of the workflows submitted will be used to pick the giveaway winner!
You can win the 1 month of n8n cloud pro OR 50 euros off the n8n merch store!
Fun approach for weighted randomness - if you want to give earlier submitters or more active community members a slightly higher chance, you can pull a list of participants from a Google Sheet, use a Code node to assign a weight per entry (e.g. inversely proportional to submission order), then use Math.random() against cumulative weights to select a winner. Keeps it fair but adds a nice twist. Submitting this as my entry!